-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
137 lines (137 loc) · 3.47 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@libyo/hexo-util",
"version": "0.1.0",
"description": "Utilities for Hexo using rust rewrite",
"main": "index.js",
"repository": "https://github.com/liby/hexo-util-rs",
"license": "MIT",
"keywords": [
"napi-rs",
"NAPI",
"N-API",
"Rust",
"node-addon",
"node-addon-api",
"hexo",
"util",
"utilities"
],
"files": [
"common",
"highlight_alias.json",
"index.d.ts",
"index.js",
"utils.d.ts",
"utils.js",
"scripts"
],
"napi": {
"name": "hexo-util",
"triples": {
"defaults": true,
"additional": [
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"i686-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"aarch64-apple-darwin",
"aarch64-linux-android",
"x86_64-unknown-freebsd",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"armv7-linux-androideabi"
]
}
},
"engines": {
"node": ">= 10"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"artifacts": "napi artifacts",
"bench": "node -r @swc-node/register benchmark/bench.ts",
"build": "napi build --platform --release --js utils.js --dts utils.d.ts --pipe \"prettier -w\"",
"build:debug": "napi build --platform --js utils.js --dts utils.d.ts --pipe \"prettier -w\"",
"format": "run-p format:prettier format:rs",
"format:prettier": "prettier . -w",
"format:rs": "cargo fmt",
"lint": "eslint . -c ./.eslintrc.yml",
"prepublishOnly": "napi prepublish -t npm",
"test": "yarn build:highlight && ava",
"version": "napi version",
"build:highlight": "node scripts/build_highlight_alias.js",
"prepare": "npm run build:highlight"
},
"devDependencies": {
"@napi-rs/cli": "^2.14.6",
"@swc-node/register": "^1.5.5",
"@swc/core": "^1.3.32",
"@taplo/cli": "^0.7.0",
"@types/cross-spawn": "^6.0.2",
"@types/hexo-util": "^0.6.4",
"@types/node": "^20.0.0",
"@types/prismjs": "^1.26.0",
"@types/rewire": "^2.5.28",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"ava": "^5.1.0",
"benny": "^3.7.1",
"chalk": "^5.2.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.0.0",
"hexo-util": "^3.1.0",
"html-entities": "^2.4.0",
"html-tag-validator": "^1.6.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"npm-run-all2": "^5.0.0",
"prettier": "^3.0.0",
"rewire": "^7.0.0",
"string-strip-html": "8",
"striptags": "^3.2.0",
"typescript": "^5.1.6"
},
"dependencies": {
"camel-case": "^4.1.2",
"cross-spawn": "^7.0.3",
"deepmerge": "^4.2.2",
"highlight.js": "^11.6.0",
"htmlparser2": "^9.0.0",
"prismjs": "^1.29.0",
"strip-indent": "^3.0.0"
},
"lint-staged": {
"*.@(js|ts|tsx)": [
"eslint -c .eslintrc.yml --fix"
],
"*.@(js|ts|tsx|yml|yaml|md|json)": [
"prettier --write"
]
},
"ava": {
"require": [
"@swc-node/register"
],
"extensions": [
"ts"
],
"timeout": "2m",
"workerThreads": false,
"environmentVariables": {
"TS_NODE_PROJECT": "./tsconfig.json"
}
},
"prettier": {
"printWidth": 120,
"semi": false,
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "always"
},
"packageManager": "[email protected]"
}