-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 802 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 802 Bytes
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
{
"name": "prism",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"check": "biome check",
"check:fix": "biome check --fix",
"ci": "npm run check && npm run compile && npm run compile:emit && npm run format && npm run test",
"compile": "tsc",
"compile:emit": "tstl --project tsconfig.emit.json",
"format": "prettier --check \"**/*.{md,yaml,yml}\"",
"format:fix": "prettier --write \"**/*.{md,yaml,yml}\"",
"release": "npm version",
"test": "tsx --test --experimental-test-coverage 'src/**/*.test.ts'"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@types/node": "^25.0.3",
"lua-types": "^2.13.1",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"typescript": "5.9.3",
"typescript-to-lua": "^1.33.2"
}
}