-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.4 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
122
123
124
125
{
"name": "@sky-fly/template",
"version": "1.6.0",
"description": "an opinionated starter template for vite or rollup with a cli to generate template project",
"keywords": [
"template",
"project",
"cli"
],
"bin": {
"create-template": "index.js"
},
"files": [
"index.js",
"dist/",
"vite-react-template-sky/",
"vite-vue-template-sky/",
"rollup-template-sky/"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"type": "module",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/skyclouds2001/template-sky.git"
},
"homepage": "https://github.com/skyclouds2001/template-sky#readme",
"bugs": {
"url": "https://github.com/skyclouds2001/template-sky/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "skyclouds2001",
"email": "[email protected]",
"url": "https://skyclouds2001.github.io/"
},
"contributors": [
"skyclouds2001"
],
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/skyclouds2001"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.13.0",
"npm": ">=9.6.0",
"yarn": ">=1.22.0",
"pnpm": ">=8.4.0"
},
"scripts": {
"dev": "rollup --config --watch",
"build": "rollup --config",
"lint": "eslint --fix . && prettier --write . && markdownlint --fix **/*.md && tsc --noEmit",
"test": "vitest",
"clean": "rimraf node_modules && rimraf dist",
"changeset": "changeset",
"bump": "changeset version",
"commit": "cz",
"prepare": "is-ci || husky",
"preinstall": "only-allow pnpm"
},
"dependencies": {
"kleur": "^4.1.5",
"minimist": "^1.2.8",
"prompts": "^2.4.2",
"simple-git": "^3.22.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@eslint/js": "^9.15.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/minimist": "^1.2.5",
"@types/node": "^22.9.3",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^2.1.5",
"@vitest/ui": "^2.1.5",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^15.12.0",
"husky": "^9.1.7",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.1",
"markdownlint": "^0.36.0",
"markdownlint-cli": "^0.43.0",
"only-allow": "^1.2.1",
"prettier": "^3.2.4",
"rimraf": "^6.0.1",
"rollup": "^4.27.4",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.5"
}
}