-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "@typed-utils/json",
"type": "module",
"version": "1.0.0",
"description": "Utilities for working with JSON values in a typesafe way",
"license": "MIT",
"main": "src/index.ts",
"types": "src/index.ts",
"exports": {
"types": "./src/index.ts",
"default": "./src/index.ts"
},
"publishConfig": {
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"scripts": {
"ci:lint": "eslint . --max-warnings 0",
"ci:specs": "dev-tests --run",
"ci:types": "dev-tests --run typecheck",
"prepare": "rollup -c",
"test:specs": "dev-tests",
"test:types": "dev-tests typecheck"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.38.0",
"@starbeam-dev/compile": "^1.0.2",
"@starbeam-dev/dev-mode": "^0.9.1",
"@starbeam-dev/eslint-plugin": "^1.0.4",
"@starbeam-dev/typedoc-theme": "^1.0.1",
"@swc/helpers": "^0.5.3",
"eslint": "^8.52.0",
"knip": "^2.38.0",
"prettier": "^3.0.3",
"rollup": "^4.1.4",
"typedoc": "^0.25.2",
"typedoc-plugin-mdn-links": "^3.1.0"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"typedoc": "0.25.2",
"vitest": "1"
}
}
}
}