-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.87 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.87 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
{
"name": "rpgm-plugins",
"version": "1.0.0",
"description": "",
"scripts": {
"main": "ts-node src/index.ts",
"build:core": "node ./.build/node_modules/rollup/dist/bin/rollup -c .build/core.config.mjs --configPlugin typescript --bundleConfigAsCjs",
"watch:core": "npm run build:core -- -w",
"build:ludens": "node ./.build/node_modules/rollup/dist/bin/rollup -c .build/ludens.config.mjs --configPlugin typescript --bundleConfigAsCjs",
"watch:ludens": "npm run build:ludens -- -w",
"build:crossimages": "node ./.build/node_modules/rollup/dist/bin/rollup -c .build/crossimages.config.mjs --configPlugin typescript --bundleConfigAsCjs",
"watch:crossimages": "npm run build:crossimages -- -w",
"build:languages": "node ./.build/node_modules/rollup/dist/bin/rollup -c .build/languages.config.mjs --configPlugin typescript --bundleConfigAsCjs",
"watch:languages": "npm run build:languages -- -w",
"build:crossassets": "node ./.build/node_modules/rollup/dist/bin/rollup -c .build/crossassets.config.mjs --configPlugin typescript --bundleConfigAsCjs",
"watch:crossassets": "npm run build:crossassets -- -w",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:core": "vitest run --project core",
"test:ludens": "vitest run --project ludens",
"test:ludens:cov": "vitest run --project ludens --coverage",
"test:core:cov": "vitest run --project core --coverage",
"test:languages": "vitest run --project languages",
"test:languages:cov": "vitest run --project languages --coverage",
"test:crossassets": "vitest run --project crossassets",
"test:crossassets:cov": "vitest run --project crossassets --coverage"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.3",
"vitest": "^4.1.4"
}
}