-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.39 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
{
"name": "@oddjs/create-odd-app",
"version": "0.0.13",
"keywords": [
"fission",
"oddsdk",
"odd",
"react",
"sveltekit",
"svelte",
"wnfs"
],
"description": "Create ODD apps in either React or SvelteKit with a single command.",
"repository": {
"type": "git",
"url": "https://github.com/oddsdk/create-odd-app",
"directory": "./"
},
"author": "Fission Team <[email protected]>",
"license": "MIT",
"bin": {
"create-odd-app": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "ncc build ./index.ts -w -o dist/",
"prerelease": "rimraf ./dist/",
"release": "ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
"build": "npm run release"
},
"devDependencies": {
"@types/async-retry": "1.4.2",
"@types/cross-spawn": "6.0.0",
"@types/node": "^12.6.8",
"@types/prompts": "2.0.1",
"@types/rimraf": "3.0.0",
"@types/tar": "4.0.3",
"@types/validate-npm-package-name": "3.0.0",
"@vercel/ncc": "0.34.0",
"async-retry": "1.3.1",
"chalk": "2.4.2",
"commander": "9.4.1",
"cross-spawn": "6.0.5",
"got": "10.7.0",
"prettier": "2.7.1",
"prompts": "2.4.2",
"rimraf": "3.0.2",
"tar": "4.4.10",
"typescript": "^4.8.4",
"update-check": "1.5.4",
"validate-npm-package-name": "3.0.0"
},
"engines": {
"node": ">=12.22.0"
}
}