forked from climateinteractive/SDEverywhere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.31 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@sdeverywhere/plugin-check",
"version": "0.3.7",
"files": [
"bin/**",
"dist/**",
"template-bundle/**",
"template-report/**",
"template-tests/**"
],
"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"
}
},
"bin": {
"sde-check": "bin/sde-check.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": "echo No tests yet",
"test:watch": "echo No tests yet",
"test:ci": "echo No tests yet",
"type-check": "tsc --noEmit -p tsconfig-test.json",
"build": "tsup",
"docs": "../../scripts/gen-docs.js",
"ci:build": "run-s clean lint prettier:check test:ci type-check build docs"
},
"dependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^5.0.2",
"@sdeverywhere/check-core": "^0.1.2",
"@sdeverywhere/check-ui-shell": "^0.2.4",
"@sdeverywhere/runtime": "^0.2.4",
"@sdeverywhere/runtime-async": "^0.2.4",
"assert-never": "^1.2.1",
"chokidar": "^3.5.3",
"picocolors": "^1.0.0",
"rollup": "^2.76.0",
"vite": "4.4.9"
},
"dependenciesComments": {
"rollup": [
"XXX: For now, rollup is listed as a dependency even though it is not actually",
"needed since we only use the @rollup plugins with vite. Those @rollup plugins",
"don't technically need rollup to function properly, but they list rollup as a",
"required peer dependency. To avoid making consumers worry about this, we list",
"it as a dependency here."
]
},
"peerDependencies": {
"@sdeverywhere/build": "^0.3.5"
},
"devDependencies": {
"@sdeverywhere/build": "*",
"@types/node": "^20.5.7"
},
"author": "Climate Interactive",
"license": "MIT",
"homepage": "https://sdeverywhere.org",
"repository": {
"type": "git",
"url": "https://github.com/climateinteractive/SDEverywhere.git",
"directory": "packages/plugin-check"
},
"bugs": {
"url": "https://github.com/climateinteractive/SDEverywhere/issues"
}
}