-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "typeorm-orderable",
"version": "0.1.2",
"main": "./dist/index",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"description": "Typeorm decorators to make columns orderable on table sql generation",
"repository": {
"type": "git",
"url": "git+https://github.com/cheplv/typeorm-orderable.git"
},
"keywords": [
"typeorm",
"decorator",
"column",
"order"
],
"author": {
"name": "Yuri Tcherepanov",
"email": "[email protected]",
"url": "https://github.com/cheplv"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc && vite build",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"test": "npm run clean && vitest --run",
"test:coverage": "vitest run --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"preversion": "npm run lint",
"docgen": "typedoc src/index.ts",
"release": "npm run build && changeset publish"
},
"private": false,
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@types/node": "^20.1.3",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"eslint": "^8.57.1",
"prettier": "^3.3.3",
"rimraf": "^5.0.0",
"typedoc": "^0.24.8",
"typescript": "^5.0.2",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.5"
},
"dependencies": {
"typeorm": "^0.3.0"
}
}