-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.71 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
{
"name": "@noclaps/highlight",
"version": "0.3.5",
"description": "A syntax highlighting library that uses Tree-sitter",
"homepage": "https://gitlab.com/noClaps/highlight",
"bugs": {
"url": "https://gitlab.com/noClaps/highlight/-/issues"
},
"license": "0BSD",
"author": "noClaps <[email protected]> (https://zerolimits.dev)",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/noClaps/highlight.git"
},
"devDependencies": {
"@napi-rs/cli": "^2.18.4",
"@types/bun": "^1.1.17",
"typescript": "^5.7.3"
},
"optionalDependencies": {
"@noclaps/highlight-darwin-arm64": "0.3.5",
"@noclaps/highlight-darwin-x64": "0.3.5",
"@noclaps/highlight-linux-arm64-gnu": "0.3.5",
"@noclaps/highlight-linux-arm64-musl": "0.3.5",
"@noclaps/highlight-linux-x64-gnu": "0.3.5",
"@noclaps/highlight-linux-x64-musl": "0.3.5",
"@noclaps/highlight-win32-arm64-msvc": "0.3.5",
"@noclaps/highlight-win32-x64-msvc": "0.3.5"
},
"scripts": {
"artifacts": "napi artifacts -d ./dist --dist ./npm",
"build": "napi build --platform --release --strip ./dist",
"build:highlight": "bun run build.ts",
"bump": "bunx changelogen --bump && bun run bump-version.ts"
},
"napi": {
"name": "highlight",
"triples": {
"default": true,
"additional": [
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"aarch64-apple-darwin"
]
}
},
"type": "module",
"exports": "./dist/highlight.js",
"types": "./dist/highlight.d.ts",
"files": [
"dist/highlight.js",
"dist/highlight.d.ts"
],
"publishConfig": {
"access": "public"
}
}