-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.32 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
{
"name": "scriptplayerplus-script-source-sdk-workspace",
"version": "1.0.0",
"private": true,
"description": "Independent open SDK for data-only ScriptPlayer+ script-source plugins",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/sioaeko/scriptplayerplus-script-source-sdk.git"
},
"homepage": "https://github.com/sioaeko/scriptplayerplus-script-source-sdk#readme",
"bugs": {
"url": "https://github.com/sioaeko/scriptplayerplus-script-source-sdk/issues"
},
"packageManager": "npm@10.9.2",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "npm run clean && npm run build -w @scriptplayerplus/script-source-sdk && npm run build -w @scriptplayerplus/plugin-cli",
"clean": "node scripts/clean.mjs",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -b --pretty false && tsc -p tsconfig.tests.json --pretty false",
"prefunplugin": "npm run build -w @scriptplayerplus/script-source-sdk && npm run build -w @scriptplayerplus/plugin-cli",
"funplugin": "node packages/cli/dist/main.js",
"check": "npm run typecheck && npm test && npm run build"
},
"devDependencies": {
"@types/node": "^20.17.0",
"ajv": "^8.17.1",
"typescript": "^5.7.0",
"vitest": "^3.2.4"
}
}