-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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
{
"name": "@akashic/playlog",
"version": "3.4.0",
"description": "The interface definition of Playlog, the serialization format of Akashic game execution",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"README.md"
],
"exports": {
".": "./lib/index.js",
"./constants": "./lib/constants/index.js"
},
"scripts": {
"prepare": "npm run clean && npm run build",
"clean": "rimraf ./lib && rimraf ./test/build",
"build": "tsc -p ./",
"test": "cd ./test && tsc -p ./",
"lint": "npm run lint:ts && npm run lint:md && npm run textlint",
"lint:ts": "eslint src/**/*.ts test/*.ts --fix",
"lint:md": "remark ./*.md --frail --no-stdout --quiet --rc-path .remarkrc",
"textlint": "textlint -f pretty-error ./README.md"
},
"repository": {
"type": "git",
"url": "https://github.com/akashic-games/playlog.git"
},
"publishConfig": {
"@akashic:registry": "https://registry.npmjs.org/"
},
"author": "DWANGO Co., Ltd.",
"license": "MIT",
"devDependencies": {
"@akashic/eslint-config": "^3.0.0",
"remark-cli": "^12.0.0",
"remark-lint": "^9.1.2",
"rimraf": "^5.0.5",
"textlint": "^14.0.0",
"textlint-rule-max-ten": "^5.0.0",
"textlint-rule-no-mix-dearu-desumasu": "^6.0.0",
"textlint-rule-prh": "^6.0.0",
"typescript": "^5.2.2"
}
}