-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "vite-manifest-parser",
"version": "1.0.1",
"author": "sullay",
"description": "",
"main": "cjs/index.js",
"module": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json",
"clean": "tsc -b tsconfig.json tsconfig.cjs.json --clean",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "jest"
},
"files": [
"index.js",
"index.d.ts",
"cjs/index.js"
],
"license": "MIT",
"keywords": [
"node",
"vite",
"manifest"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sullay/vite-manifest-parser.git"
},
"bugs": {
"url": "https://github.com/sullay/vite-manifest-parser/issues"
},
"homepage": "https://github.com/sullay/vite-manifest-parser#readme",
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"typescript": "^5.3.2",
"@types/jest": "^29.5.10",
"jest": "^29.7.0",
"ts-jest": "^29.1.1"
}
}