-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.73 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
66
67
68
69
70
71
72
73
74
75
{
"name": "tinyhighlight",
"version": "0.3.2",
"description": "A tiny syntax highlighter.",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepare": "husky install",
"publish-test": "clean-publish --without-publish",
"release": "bumpp package.json --commit --push --tag && tsup && clean-publish",
"test": "vitest --poolOptions.threads.singleThread"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./picocolors": {
"types": "./dist/picocolors.d.ts",
"default": "./dist/picocolors.js"
}
},
"files": [
"dist/**",
"*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tinylibs/tinyhighlight.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tinylibs/tinyhighlight/issues"
},
"homepage": "https://github.com/tinylibs/tinyhighlight#readme",
"peerDependencies": {
"picocolors": "^1.0.0"
},
"peerDependenciesMeta": {
"picocolors": {
"optional": true
}
},
"dependencies": {
"js-tokens": "^8.0.2"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.4",
"@size-limit/time": "^7.0.4",
"bumpp": "^8.2.0",
"changelogithub": "^0.6.6",
"clean-publish": "^3.4.4",
"husky": "^7.0.4",
"nano-staged": "^0.5.0",
"picocolors": "^1.0.0",
"prettier": "^2.5.1",
"size-limit": "^7.0.4",
"tsup": "^5.11.7",
"typescript": "^4.5.4",
"vitest": "^1.1.0"
},
"keywords": [
"highlight",
"code",
"syntax"
],
"engines": {
"node": ">=14.0.0"
}
}