-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.1 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "cddl.js",
"version": "1.0.2",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ExaDev/cddl.js"
},
"packageManager": "pnpm@12.4.1+sha512.2e81e399d73fe8390dab25e06aa788ab7a5908248d2f5a370f82b481147a6a7a367bf8048f9a6fdb6460f21a66f0542dedb8b94ca2c8723596741920b1656d4c",
"publishConfig": {
"provenance": true,
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "turbo run _build",
"_build": "tsdown",
"vendor:build": "turbo run _vendor:build",
"_vendor:build": "tsc -p vendor/cddl/tsconfig.json",
"test": "turbo run _test",
"_test": "vitest run",
"typecheck": "turbo run _typecheck",
"_typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.node.json --noEmit && tsc -p vendor/cddl/tsconfig.json --noEmit",
"lint": "turbo run _lint",
"_lint": "eslint . --fix --cache --max-warnings 0"
},
"dependencies": {
"camelcase": "9.0.0",
"cbor2": "2.3.0",
"zod": "4.5.4"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.5",
"@exadev/eslint-config": "2.12.1",
"@semantic-release/changelog": "7.0.0",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "11.0.1",
"@semantic-release/github": "12.0.9",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.1",
"@types/node": "26.4.1",
"conventional-changelog-conventionalcommits": "10.2.1",
"eslint": "10.10.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.6",
"globals": "17.12.0",
"jiti": "2.7.0",
"prettier": "3.9.6",
"semantic-release": "25.0.9",
"tsdown": "0.23.0",
"turbo": "2.10.12",
"typescript": "6.0.3",
"vitest": "5.0.0"
},
"exports": {
"./emitter": {
"import": "./dist/emitter.mjs",
"require": "./dist/emitter.cjs"
},
"./parse": {
"import": "./dist/parse.mjs",
"require": "./dist/parse.cjs"
},
"./runtime": {
"import": "./dist/runtime.mjs",
"require": "./dist/runtime.cjs"
},
"./package.json": "./package.json"
}
}