-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
121 lines (121 loc) · 3.14 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "tiddlywiki-plugin-dev",
"author": "Sttot",
"version": "0.3.1",
"main": "./dist/js/index.js",
"bin": {
"tiddlywiki-plugin-dev": "./dist/js/main.js"
},
"types": "./dist/index.d.ts",
"license": "MIT",
"keywords": [
"tiddlywiki",
"tiddlywiki5",
"tiddlywiki-plugin",
"tiddlywiki-theme"
],
"repository": {
"type ": "git",
"url": "https://github.com/tiddly-gittly/plugin-dev-cli"
},
"homepage": "https://tiddly-gittly.github.io/Modern.TiddlyDev/",
"bugs": {
"url": "https://github.com/tiddly-gittly/plugin-dev-cli/issues"
},
"scripts": {
"prepare": "modern build && husky install",
"prepublishOnly": "modern build --platform",
"dev": "modern dev",
"build": "modern build",
"reset": "rimraf ./**/node_modules",
"lint": "modern lint",
"change": "modern change",
"bump": "modern bump",
"pre": "modern pre",
"change-status": "modern change-status",
"gen-release-note": "modern gen-release-note",
"release": "modern release",
"new": "modern new",
"test": "modern test --passWithNoTests",
"upgrade": "modern upgrade"
},
"engines": {
"node": ">=14.17.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
],
"*.{js,jsx,mjs,mjsx,cjs,cjsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"dependencies": {
"autoprefixer": "^10.4.14",
"browserslist": "^4.20.3",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"clean-css": "^5.3.0",
"cli-progress": "^3.11.2",
"commander": "^9.4.1",
"esbuild-plugin-browserslist": "^0.11.1",
"esbuild-style-plugin": "^1.6.3",
"esbuild-svelte": "^0.8.1",
"esbuild": "^0.20.1",
"get-port-please": "^2.6.1",
"html-minifier-terser": "^7.1.0",
"inquirer": "^8.1.3",
"less": "^4.1.3",
"lodash": "^4.17.21",
"postcss-import": "^15.1.0",
"sass": "^1.63.3",
"sha256": "^0.2.0",
"simple-git": "^3.15.1",
"stylus": "^0.59.0",
"svelte-preprocess": "^6.0.2",
"tailwindcss": "^3.2.7",
"tiddlywiki": "latest",
"uglify-js": "^3.15.4",
"ws": "^8.6.0"
},
"devDependencies": {
"@modern-js/module-tools": "1.22.8",
"@modern-js/plugin-testing": "1.22.8",
"@modern-js/tsconfig": "1.22.8",
"@types/clean-css": "^4.2.6",
"@types/cli-progress": "^3.11.0",
"@types/html-minifier-terser": "^7.0.0",
"@types/inquirer": "^8.2.5",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.9",
"@types/sha256": "^0.2.0",
"@types/uglify-js": "^3.17.1",
"@types/ws": "^8.5.3",
"husky": "^8",
"lint-staged": "^11.2.6",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tw5-typed": "latest",
"typescript": "^5.3.3"
},
"sideEffects": [
"*.css",
"*.less",
"*.sass",
"*.scss"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}