-
Notifications
You must be signed in to change notification settings - Fork 566
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.94 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.94 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"type": "module",
"sideEffects": [
"sources/state/catalog.ts",
"sources/vendor-globals.ts"
],
"name": "universal-lpc-spritesheet-character-generator",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=22.18.0"
},
"scripts": {
"dev": "vite",
"prebuild": "rimraf \"dist/!(spritesheets)\"",
"build": "vite build",
"preview": "vite preview",
"serve": "vite",
"serve:open": "vite --open",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"validate-site-sources": "concurrently -c auto -n \"credits,zpos\" \"node scripts/generate_credits.ts\" \"node scripts/zPositioning/parse_zpos.ts\"",
"z-positions": "node scripts/zPositioning/parse_zpos.ts",
"z-positions:update": "node scripts/zPositioning/update_zpos.ts",
"test": "npm run test:node && node ./node_modules/testem/testem.js ci",
"test:node": "node ./tests/node/run-node-tests.js",
"test:node:coverage": "rimraf coverage/node && c8 node ./tests/node/run-node-tests.js && node scripts/coverage/mark-non-executable-lines.js coverage/node/lcov.info",
"test:server": "node ./node_modules/testem/testem.js",
"test:browser:coverage": "rimraf coverage/browser && VITE_COVERAGE=true node ./node_modules/testem/testem.js ci",
"test:visual": "playwright test",
"test:visual:headed": "playwright test --headed",
"fixture:issue382": "node scripts/fixture-builder.js tests/fixtures/issue-382/issue-382-selections.json",
"profile:zip": "node scripts/zip/zip-export-profile.js",
"profile:zip:quick": "node scripts/zip/zip-export-profile.js --quick",
"profile:zip:baseline": "node scripts/zip/zip-export-profile.js --out tmp/baseline-zip-export-profile.json",
"profile:zip:baseline:quick": "node scripts/zip/zip-export-profile.js --quick --out tmp/baseline-zip-export-profile-quick.json",
"diff:zip-profile": "node scripts/zip/diff-zip-profile.js",
"compute-style-dump": "node scripts/computed-style/dump-computed-styles.js",
"compute-style-dump:mobile": "node scripts/computed-style/dump-computed-styles.js --preset mobile",
"compute-style-diff-all": "node scripts/computed-style/computed-style-diff-all.js",
"compute-style-diff-all:preview-ports": "node scripts/computed-style/computed-style-diff-all.js --url-a http://localhost:4176 --url-b http://localhost:4177",
"lockfile:fix": "bash scripts/fix-lockfile-after-rebase.sh"
},
"dependencies": {
"bulma": "1.0.4",
"classnames": "^2.5.1",
"jszip": "^3.10.1",
"mithril": "^2.3.8",
"neverthrow": "^8.2.0",
"tinygesture": "^3.0.0"
},
"devDependencies": {
"@argos-ci/playwright": "^7.3.6",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@tsconfig/strictest": "^2.0.8",
"@types/mithril": "^2.2.8",
"@types/node": "^25.6.0",
"@typescript/native": "npm:typescript@^7.0.2",
"c8": "^12.0.0",
"chai": "^6.2.2",
"concurrently": "^10.0.4",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"execa": "^9.6.1",
"globals": "^16.5.0",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.2.0",
"mocha": "^12.0.0-rc.6",
"open": "^10.2.0",
"prettier": "^3.8.1",
"purgecss": "^8.0.0",
"rimraf": "^6.1.3",
"sass-embedded": "^1.99.0",
"serve": "^14.2.6",
"sinon": "^21.1.2",
"testem": "^3.20.1",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.16",
"vite-multiple-assets": "^2.2.6",
"vite-plugin-cp": "^6.0.3",
"vite-plugin-istanbul": "^9.0.1",
"vite-plugin-run": "^0.9.1",
"vite-plugin-testem": "^1.0.1"
},
"overrides": {
"minimatch@^10.2.5": {
"brace-expansion": "^5.0.9"
},
"brace-expansion@1": "1.1.18",
"brace-expansion@2": "2.1.4"
}
}