generated from hankei6km/my-starter-ts-npm-cli-and-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.28 KB
/
package.json
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
{
"name": "@hankei6km/rollup-plugin-nodebox-fs-files",
"version": "0.1.2",
"description": "Converts files to Nodebox files",
"author": "hankei6km <[email protected]> (https://github.com/hankei6km)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/hankei6km/rollup-plugin-nodebox-fs-files.git"
},
"keywords": [
"rollup-plugin",
"vite-plugin",
"nodebox"
],
"main": "dist/index.js",
"exports": "./dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && tsc && rimraf dist/test && mv dist/src/* dist/ && rimraf dist/src",
"test": "vitest",
"test:run": "vitest run",
"test:debug": "vitest run --inspect-brk --threads false --coverage false",
"lint:type-check": "tsc --noEmit",
"clean": "rimraf dist/",
"upgrade-interactive": "npm-check --update",
"csb:test": "npm test -- --runInBand --watchAll"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^2.0.2",
"nodemon": "^3.0.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vite": "^5.0.0",
"vitest": "^2.0.2"
},
"dependencies": {
"@rollup/pluginutils": "^5.0.2",
"rollup": "^4.5.0"
}
}