-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.22 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
{
"name": "css-i18n",
"type": "module",
"version": "0.0.5",
"packageManager": "[email protected]",
"homepage": "https://github.com/valaxyjs/css-i18n",
"repository": {
"type": "git",
"url": "https://github.com/valaxyjs/css-i18n"
},
"keywords": [
"markdown-it-plugin",
"markdown-it",
"markdown"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./*": "./*"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "npm run build:lib && npm run build:css",
"build:lib": "tsup src/index.ts --dts",
"build:css": "sass src/styles/index.scss dist/index.css",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"release": "bumpp --commit --push --tag",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.1",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-container": "^2.0.10",
"bumpp": "^9.5.2",
"eslint": "^9.9.1",
"markdown-it": "^14.1.0",
"markdown-it-container": "^4.0.0",
"sass": "^1.77.8",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
}
}