-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 866 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
{
"name": "create-vite-ext",
"version": "1.1.5",
"description": "Scaffolding your Vite powered browser extensions",
"main": "index.js",
"workspaces": [
"templates/*"
],
"scripts": {
"dev": "SET NODE_ENV=development&& ts-node-dev --respawn src/index.ts",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"bin": {
"create-vite-ext": "index.js",
"create-vite-extension": "index.js"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/sakibul-islam/create-vite-ext.git"
},
"homepage": "https://github.com/sakibul-islam/create-vite-ext",
"author": "Sakibul Islam",
"license": "ISC",
"devDependencies": {
"@types/prompts": "^2.4.9",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.3"
},
"dependencies": {
"kolorist": "^1.8.0",
"prompts": "^2.4.2"
}
}