-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.32 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.32 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
37
{
"name": "browser_mod",
"private": true,
"version": "2.10.0",
"description": "",
"scripts": {
"build": "rollup -c",
"update-manifest-version": "node -e \"const pkg = require('./package.json'); const manifest = require('./custom_components/browser_mod/manifest.json'); manifest.version = pkg.version; require('fs').writeFileSync('./custom_components/browser_mod/manifest.json', JSON.stringify(manifest, null, 2) + '\\n');\"",
"prebuild": "npm run update-manifest-version",
"watch": "rollup -c --watch"
},
"keywords": [],
"author": "Thomas Lovén",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.28.5",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@types/ungap__structured-clone": "^1.2.0",
"@ungap/structured-clone": "^1.3.0",
"baseline-browser-mapping": "^2.9.19",
"conventional-changelog-conventionalcommits": "^9.2.0",
"lit": "3.3.1",
"rollup": "^4.59.0",
"rollup-plugin-typescript2": "^0.36.0",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3"
},
"dependencies": {
"@watchable/unpromise": "^1.0.2"
}
}