-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 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
{
"name": "nodelistparser",
"version": "0.1.3",
"description": "Surge / Mihomo (Clash.Meta) nodelist / proxy provider parser and generator.",
"repository": {
"type": "git",
"url": "https://github.com/SukkaW/nodelistparser"
},
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.mjs",
"types": "./dist/cjs/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/es/index.d.mts",
"default": "./dist/es/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"scripts": {
"lint": "eslint --format=sukka .",
"build": "bunchee",
"test": "mocha --require @swc-node/register src/*.test.ts src/**/*.test.ts",
"prerelease": "pnpm run lint && pnpm run build",
"release": "bumpp -r --all --commit \"release: %s\" --tag \"%s\""
},
"keywords": [
"clash",
"mihomo",
"surge",
"nodelist",
"proxy-provider"
],
"author": "Sukka <https://skk.moe>",
"license": "MIT",
"devDependencies": {
"@eslint-sukka/node": "^6.8.1",
"@swc-node/register": "^1.10.9",
"@types/mocha": "^10.0.9",
"@types/node": "^22.8.1",
"bumpp": "^9.7.1",
"bunchee": "^5.5.1",
"eslint": "^9.13.0",
"eslint-config-sukka": "^6.8.1",
"eslint-formatter-sukka": "^6.8.1",
"expect": "^29.7.0",
"mocha": "^10.7.3",
"typescript": "^5.6.3"
},
"packageManager": "pnpm@9.12.1+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4"
}