-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 863 Bytes
/
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
{
"name": "sveltegen",
"version": "1.5.1",
"description": "A simple component generator CLI for Svelte/SvelteKit.",
"main": "./dist/index.mjs",
"scripts": {
"start": "nodemon -I --watch 'src/**/*.ts' --exec ts-node src/index.ts",
"refresh": "shx rm -rf ./node_modules ./package-lock.json && npm install",
"build": "shx rm -rf dist && node ./build.mjs && npm run copy",
"copy": "shx rm -rf dist/templates && shx cp -r ./templates dist"
},
"bin": {
"sveltegen": "./dist/index.mjs"
},
"files": [
"dist"
],
"keywords": [
"cli",
"generator",
"svelte",
"sveltekit",
"component",
"utility"
],
"author": "snuffydev",
"license": "ISC",
"devDependencies": {
"@types/node": "^16.10.2",
"@types/sade": "^1.7.3",
"nodemon": "^2.0.13",
"shx": "^0.3.3",
"esbuild": "latest",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}