-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
64 lines (64 loc) · 2.1 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
{
"name": "@akashic/akashic-engine",
"version": "3.20.1",
"description": "The core library of Akashic Engine",
"main": "index.js",
"dependencies": {
"@akashic/game-configuration": "~2.5.0",
"@akashic/pdi-types": "^1.13.0",
"@akashic/playlog": "~3.3.0",
"@akashic/trigger": "~2.1.0"
},
"devDependencies": {
"@akashic/eslint-config": "3.0.1",
"@akashic/pdi-common-impl": "^1.4.0",
"@types/jest": "^29.0.0",
"eslint-config-prettier": "^10.0.0",
"jest": "^29.0.0",
"prettier": "^3.0.3",
"rimraf": "^6.0.0",
"rollup": "^4.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-minification": "^0.2.0",
"rollup-plugin-node-resolve": "^5.2.0",
"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",
"ts-jest": "^29.0.0",
"typedoc": "^0.27.0",
"typescript": "^5.0.0",
"xorshift": "1.2.0"
},
"scripts": {
"prepare": "npm run build && npm run doc",
"build": "npm run clean && tsc -p ./ && npm run bundle && npm run format",
"bundle": "rollup -c rollup.config.js --bundleConfigAsCjs",
"clean": "rimraf dist && rimraf lib",
"test": "npm run test:jest && npm run lint",
"test:jest": "jest --config jest.config.js",
"lint": "npm run lint:eslint && npm run lint:textlint",
"lint:eslint": "eslint \"src/**/*.ts\"",
"lint:textlint": "textlint -f pretty-error doc/ && textlint -f pretty-error unreleased-changes/",
"format": "npm run format:prettier && npm run format:eslint",
"format:prettier": "prettier --write \"src/**/*.ts\" --config prettier.config.json",
"format:eslint": "eslint \"src/**/*.ts\" --fix",
"doc": "typedoc --out doc/html/ --name \"Akashic Engine\" src/index.ts"
},
"files": [
"lib",
"dist",
"index.js",
"index.runtime.d.ts"
],
"repository": {
"type": "git",
"url": "akashic-games/akashic-engine.git"
},
"publishConfig": {
"@akashic:registry": "https://registry.npmjs.org/"
},
"typings": "lib/index.d.ts",
"author": "DWANGO Co., Ltd.",
"license": "MIT"
}