-
Notifications
You must be signed in to change notification settings - Fork 306
/
package.json
57 lines (57 loc) · 1.86 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
53
54
55
56
57
{
"name": "Stylus",
"version": "1.5.51",
"description": "Redesign the web with Stylus, a user styles manager",
"license": "GPL-3.0-only",
"repository": "openstyles/stylus",
"author": "Stylus Team",
"dependenciesNotes": {
"codemirror": "WARNING! Always use an exact version and test it for a while before releasing"
},
"dependencies": {
"@eight04/draggable-list": "^0.3.0",
"codemirror": "5.65.10",
"db-to-cloud": "^0.7.0",
"jsonlint": "^1.6.3",
"less": "^4.2.0",
"lz-string-unsafe": "^1.4.4-fork-1",
"stylelint-bundle": "^16.5.0",
"stylus-lang-bundle": "^0.63.1",
"usercss-meta": "^0.12.0",
"webext-launch-web-auth-flow": "^0.1.1"
},
"devDependencies": {
"@types/chrome": "^0.0.263",
"@types/firefox-webext-browser": "^120.0.3",
"chalk": "^4.1.2",
"eslint": "^8.48.0",
"fast-glob": "^3.3.1",
"fs-extra": "^11.1.0",
"jszip": "^3.10.1",
"node-fetch": "^2.7.0",
"postcss": "^8.4.32",
"postcss-preset-env": "^9.3.0",
"svg2ttf": "^6.0.3",
"svgicons2svgfont": "^12.0.0",
"sync-version": "^1.0.1"
},
"scripts": {
"lint": "eslint \"**/*.js\" --cache",
"test": "node tools/test.js && npm run lint",
"update-locales": "tx pull --all && node tools/fix-transifex.js && git commit -m \"update locales\" _locales",
"update-transifex": "tx push -s",
"build-chrome": "npm test && node tools/build.js chrome",
"build-firefox": "npm test && node tools/build.js firefox",
"build-icons": "node tools/build-icons",
"build-vendor": "node tools/build-vendor",
"zip": "npm test && node tools/build.js",
"start": "web-ext run",
"start-chrome": "web-ext run -t chromium",
"preversion": "npm test",
"version": "sync-version manifest.json && git add .",
"postversion": "npm run zip && git push --follow-tags"
},
"engines": {
"node": ">=16.0.0"
}
}