-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.65 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.65 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
{
"name": "@peacockproject/statemachine-parser",
"version": "6.2.0",
"description": "IOI state machine conditional parser.",
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"homepage": "https://thepeacockproject.org",
"sideEffects": false,
"engines": {
"node": ">=20"
},
"directories": {
"test": "tests",
"lib": "build",
"doc": "docs"
},
"files": [
"README.md",
"build/*",
"LICENSE",
"src"
],
"keywords": [
"ioi",
"state",
"machines",
"glacier",
"modding"
],
"repository": {
"type": "git",
"url": "https://github.com/thepeacockproject/StateMachineParser"
},
"author": "The Peacock Project <admin@thepeacockproject.org> (https://thepeacockproject.org)",
"license": "Apache-2.0",
"packageManager": "yarn@4.3.1",
"exports": {
"import": "./build/index.js",
"require": "./build/index-cjs.js"
},
"devDependencies": {
"@types/node": "^20.14.8",
"@vitest/coverage-v8": "^3.2.4",
"esbuild": "^0.25.0",
"prettier": "^3.3.2",
"typescript": "^5.5.2",
"vitest": "^3.2.4"
},
"scripts": {
"prettier": "prettier --write \"**/*.{ts,md,json,js,cjs}\"",
"build": "tsc && node build.mjs",
"prepack": "yarn build",
"test": "vitest",
"coverage": "vitest --coverage"
},
"prettier": {
"semi": false,
"tabWidth": 4
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"mutative": "^1.3.0"
}
}