-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.53 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.53 KB
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/build",
"version": "0.3.12",
"files": [
"dist/**"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint src --max-warnings 0",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"precommit": "../../scripts/precommit",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest --pool=forks --test-timeout=10000 run",
"type-check": "tsc --noEmit -p tsconfig-test.json",
"build": "tsup",
"docs": "../../scripts/gen-docs.js",
"ci:build": "run-s clean lint prettier:check type-check build test:ci docs"
},
"dependencies": {
"@sdeverywhere/parse": "^0.1.4",
"chokidar": "^5.0.0",
"cross-spawn": "^7.0.6",
"folder-hash": "^4.0.2",
"neverthrow": "^4.3.1",
"picocolors": "^1.0.0",
"tinyglobby": "^0.2.15"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/folder-hash": "^4.0.1",
"@types/node": "^20.14.8"
},
"author": "Climate Interactive",
"license": "MIT",
"homepage": "https://sdeverywhere.org",
"repository": {
"type": "git",
"url": "https://github.com/climateinteractive/SDEverywhere.git",
"directory": "packages/build"
},
"bugs": {
"url": "https://github.com/climateinteractive/SDEverywhere/issues"
}
}