-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.3 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
{
"name": "@codedrobe/core",
"version": "0.7.0-beta.0",
"description": "Cross-platform CodeDrobe runtime, CLI, app adapters, and .codedrobe-theme tooling.",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/CodeDrobe/core.git"
},
"homepage": "https://github.com/CodeDrobe/core#readme",
"bugs": {
"url": "https://github.com/CodeDrobe/core/issues"
},
"bin": {
"codedrobe": "bin/codedrobe.mjs"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.mjs"
},
"./adapters": {
"types": "./types/adapters.d.ts",
"default": "./src/adapters/index.mjs"
},
"./theme": {
"types": "./types/theme.d.ts",
"default": "./src/theme/index.mjs"
}
},
"types": "./types/index.d.ts",
"files": [
"LICENSE",
"NOTICE",
"README.md",
"README_zh.md",
"bin",
"schemas",
"src",
"types"
],
"scripts": {
"test": "node --test && npm run typecheck",
"typecheck": "tsc -p tests/types/tsconfig.json",
"pack:check": "npm pack --dry-run"
},
"devDependencies": {
"typescript": "^5.9.2"
},
"engines": {
"node": ">=22.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}