-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
48
49
50
51
52
{
"name": "@binary-butterfly/rollup-plugin-version-file",
"version": "1.0.1",
"description": "Automatically write the current version into a static file",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/binary-butterfly/rollup-plugin-version-file/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binary-butterfly/rollup-plugin-version-file.git"
},
"private": false,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@binary-butterfly/eslint-plugin-no-new-comparisons": "^1.0.0",
"@types/node": "^20.11.24",
"@typescript-eslint/parser": "^7.1.0",
"@typescript-eslint/typescript-estree": "^7.1.0",
"@vitest/coverage-v8": "^1.3.1",
"eslint": "^8.57.0",
"eslint-plugin-testing-library": "^6.2.0",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3",
"vitest": "^1.3.1"
},
"scripts": {
"typecheck": "tsc",
"test": "vitest --run",
"coverage": "vitest --run --coverage",
"build": "NODE_ENV=production vite build --ssr",
"prepublishOnly": "npm run build",
"lint": "eslint src/index.ts"
},
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/src/index.d.ts"
},
"files": [
"dist/*"
],
"types": "./dist/src/index.d.ts",
"keywords": [
"vite",
"rollup"
]
}