-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 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
{
"private": true,
"name": "@akashic/akashic-cli",
"version": "0.0.1",
"description": "Command-line utility for akashic game development",
"type": "module",
"scripts": {
"postinstall": "npm run build",
"build": "nx run-many -t build",
"test": "npm run lint:md && npm run test:nx && npm run test:e2e",
"test:nx": "nx run-many -t test",
"test:e2e": "node test/e2e.js --local",
"test:published": "node test/e2e.js",
"lint:md": "remark . --frail --no-stdout --quiet --rc-path ./.remarkrc",
"changeset": "changeset",
"version-packages": "changeset version",
"release-packages": "changeset publish"
},
"author": "DWANGO Co., Ltd.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/akashic-games/akashic-cli.git"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"overrides": {
"vite": {
"rollup": "npm:@rollup/wasm-node"
}
},
"devDependencies": {
"@akashic/remark-preset-lint": "^0.1.2",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"@types/node": "^22.19.13",
"get-port": "^7.1.0",
"nx": "^20.3.1",
"ps-tree": "^1.2.0",
"remark-cli": "^12.0.0",
"shelljs": "^0.10.0"
}
}