-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
57 lines (57 loc) · 1.55 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
{
"name": "@sdeverywhere/create",
"version": "0.2.19",
"description": "Create a new SDEverywhere project with minimal configuration",
"type": "module",
"files": [
"dist/**",
"!.DS_Store"
],
"bin": {
"create-sde": "bin/create-sde.js"
},
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint src --ext .ts --max-warnings 0",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"precommit": "../../scripts/precommit",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run",
"type-check": "tsc --noEmit -p tsconfig-test.json",
"build": "tsup",
"start": "./bin/create-sde.js",
"ci:build": "run-s clean lint prettier:check type-check build test:ci"
},
"dependencies": {
"@sdeverywhere/compile": "^0.7.20",
"execa": "^6.1.0",
"fs-extra": "^10.1.0",
"giget": "^1.2.3",
"kleur": "^4.1.5",
"ora": "^6.1.2",
"prompts": "^2.4.2",
"which-pm-runs": "^1.1.0",
"yaml": "^2.2.2",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^20.5.7",
"@types/prompts": "^2.0.14",
"@types/which-pm-runs": "^1.0.0",
"@types/yargs-parser": "^21.0.0"
},
"author": "Climate Interactive",
"license": "MIT",
"homepage": "https://sdeverywhere.org",
"repository": {
"type": "git",
"url": "https://github.com/climateinteractive/SDEverywhere.git",
"directory": "packages/create"
},
"bugs": {
"url": "https://github.com/climateinteractive/SDEverywhere/issues"
}
}