-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.44 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
{
"name": "prism-theme-vars",
"version": "0.2.5",
"packageManager": "pnpm@9.0.4",
"description": "A customizable Prism.js theme using CSS variables",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu/prism-theme-vars#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/prism-theme-vars.git"
},
"bugs": {
"url": "https://github.com/antfu/prism-theme-vars/issues"
},
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
},
"./*": "./*",
"./themes/*": "./themes/*",
"./base.css": "./base.css",
"./to-codemirror.css": "./to-codemirror.css",
"./marker.css": "./marker.css"
},
"main": "index.js",
"module": "index.mjs",
"files": [
"base.css",
"index.js",
"index.mjs",
"marker.css",
"themes",
"to-codemirror.css"
],
"scripts": {
"lint": "eslint .",
"dev": "npm -C playground run dev",
"build": "npm -C playground run build",
"release": "bumpp && npm publish"
},
"devDependencies": {
"@antfu/eslint-config": "^2.15.0",
"@antfu/ni": "^0.21.12",
"@types/node": "^20.12.7",
"bumpp": "^9.4.0",
"change-case": "^5.4.4",
"cross-env": "^7.0.3",
"eslint": "^9.0.0",
"eslint-plugin-format": "^0.1.1",
"esno": "^4.7.0",
"fast-glob": "^3.3.2",
"typescript": "^5.4.5"
}
}