-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.13 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.13 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "ai-table",
"version": "0.5.9",
"workspaces": [
"packages/*"
],
"scripts": {
"ng": "ng",
"start": "ng serve demo",
"start-ws": "npx ts-node ./backend/src/index",
"build": "npm run build:packages && npm run sync-styles",
"build:packages": "tsx ./scripts/build-packages.ts",
"build:demo": "ng build demo --configuration production",
"build:ws": "tsc -p tsconfig.backend.json",
"sync-styles": "tsx ./scripts/sync-styles.ts",
"release": "npm run build && wpm release --release-branch-format release-auto-v{{version}}",
"release-next": "npm run build && wpm release --release-branch-format release-auto-next-v{{version}}",
"release-manual": "npm run build && wpm release",
"release-next-manual": "npm run build && wpm release --release-branch-format release-next-v{{version}}",
"watch": "ng build --watch --configuration development",
"pub": "wpm publish && npm run pub-only",
"pub-next": "wpm publish && npm run pub-next-only",
"pub-only": "tsx ./scripts/npm-publish.ts",
"pub-next-only": "tsx ./scripts/npm-publish.ts --next",
"test": "npm run test:state",
"test:grid": "ng test grid",
"test:state": "ng test state"
},
"repository": {
"type": "git",
"url": "https://github.com/worktile/ai-table"
},
"dependencies": {
"@angular/animations": "^20.3.13",
"@angular/cdk": "^20.2.14",
"@angular/common": "^20.3.13",
"@angular/compiler": "^20.3.13",
"@angular/core": "^20.3.13",
"@angular/forms": "^20.3.13",
"@angular/platform-browser": "^20.3.13",
"@angular/platform-browser-dynamic": "^20.3.13",
"@angular/router": "^20.3.13",
"@tethys/cdk": "^20.0.4",
"@tethys/icons": "^1.4.85",
"bson-objectid": "^2.0.4",
"nanoid": "^3.3.8",
"date-fns": "^4.1.0",
"grapheme-splitter": "^1.0.4",
"immer": "^10.0.3",
"ngx-tethys": "^20.0.4",
"konva": "^9.3.14",
"lodash": "^4.17.21",
"lru-cache": "^11.0.0",
"npm": "^10.8.1",
"rxjs": "~7.8.0",
"tslib": "^2.6.3",
"zone.js": "~0.15.0",
"is-hotkey": "^0.2.0"
},
"devDependencies": {
"@angular/build": "^20.3.11",
"@angular/cli": "^20.3.11",
"@angular/compiler-cli": "^20.3.13",
"@types/is-hotkey": "^0.1.6",
"@types/jasmine": "~5.1.4",
"@types/lodash": "^4.17.7",
"@types/node": "^10.14.9",
"@types/ws": "^7.4.7",
"@worktile/pkg-manager": "^0.1.0",
"chalk": "^2.4.2",
"cpx": "^1.5.0",
"jasmine-core": "~5.2.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "^20.3.2",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"tsx": "^4.7.0",
"typescript": "~5.8.3",
"ws": "8.0.0",
"y-websocket": "^2.0.3",
"yjs": "13.6.26"
}
}