-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
{
"name": "@sdeverywhere/plugin-config",
"version": "0.2.7",
"files": [
"dist/**",
"template-config/**"
],
"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 --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",
"bundle": "tsup",
"copy-types": "cp src/spec-types.ts dist",
"build": "run-s bundle copy-types",
"docs": "../../scripts/gen-docs.js",
"ci:build": "run-s clean lint prettier:check test:ci type-check build docs"
},
"dependencies": {
"byline": "^5.0.0",
"csv-parse": "^5.3.3",
"sanitize-html": "^2.13.0"
},
"peerDependencies": {
"@sdeverywhere/build": "^0.3.7"
},
"devDependencies": {
"@sdeverywhere/build": "*",
"@types/byline": "^4.2.33",
"@types/dedent": "^0.7.0",
"@types/marked": "^4.0.1",
"@types/node": "^20.5.7",
"@types/sanitize-html": "^2.13.0",
"@types/temp": "^0.9.1",
"dedent": "^0.7.0",
"temp": "^0.9.4"
},
"author": "Climate Interactive",
"license": "MIT",
"homepage": "https://sdeverywhere.org",
"repository": {
"type": "git",
"url": "https://github.com/climateinteractive/SDEverywhere.git",
"directory": "packages/plugin-config"
},
"bugs": {
"url": "https://github.com/climateinteractive/SDEverywhere/issues"
}
}