-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 966 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 966 Bytes
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
{
"name": "web-features-plus-webview",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build",
"postinstall": "npm run build",
"build": "npx rolldown -c && tsc",
"prebuild": "npx prettier . --write; npm run generate-data",
"postbuild": "cp src/data.json dist/",
"generate-csv": "node tools/generate_csv.js",
"generate-data": "node scripts/generate_data.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@mdn/browser-compat-data": "^7.0.0",
"prettier": "^3.3.3",
"rolldown": "^1.0.0-beta.44",
"web-features": "^3.0.0"
},
"devDependencies": {
"@types/node": "^20.12.12",
"export-to-csv": "^1.4.0",
"typescript": "^5.4.5"
}
}