-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.6 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
{
"name": "pro-3d-video",
"version": "1.0.0",
"description": "Procedural 3D Video: A Procedural Approach For Describing Motion",
"main": "dist/index.js",
"type": "module",
"scripts": {
"generate:parser": "nearleyc grammar.ne -o src/parser/parser.ts",
"build": "tsc -p build.tsconfig.json",
"fix": "run-s fix:prettier fix:eslint",
"fix:prettier": "prettier --write 'src/**/*.{ts,tsx}'",
"fix:eslint": "eslint src --fix",
"test": "nyc mocha ./tests/*.spec.ts --timeout 15000",
"test:serializer": "nyc mocha ./tests/serializer.spec.ts --timeout 15000"
},
"exports": {
".": "./dist/index.js",
"./motion": "./dist/domains/motion/index.js",
"./building": "./dist/domains/building/index.js",
"./pathway": "./dist/domains/pathway/index.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/moo": "^0.5.5",
"@types/nearley": "^2.11.2",
"@types/three": "^0.150.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"chai": "^4.3.7",
"comlink": "4.4.1",
"eslint": "^8.37.0",
"mocha": "^10.2.0",
"nearley": "^2.20.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"dependencies": {
"moo": "^0.5.2",
"murmurhash": "^2.0.1",
"three": "^0.151.3",
"three-pathfinding": "^1.2.0",
"web-worker": "^1.2.0"
}
}