-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.55 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.55 KB
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
{
"name": "@nsnanocat/util",
"description": "Pure JS's util module for well-known iOS network tools",
"author": "VirgilClyne <Virgil@nanocat.me>",
"homepage": "https://NSNanoCat.github.io/util",
"keywords": [
"loon",
"quantumult",
"surge",
"shadowrocket",
"stash",
"egern"
],
"license": "Apache-2.0",
"bugs": "https://github.com/NSNanoCat/util/issues",
"main": "index.js",
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs"
},
"./polyfill/fetch": {
"import": "./polyfill/fetch.mjs",
"require": "./polyfill/fetch.cjs"
},
"./polyfill/Storage": {
"import": "./polyfill/Storage.mjs",
"require": "./polyfill/Storage.cjs"
},
"./*": "./*"
},
"types": "types/nsnanocat-util.d.ts",
"scripts": {
"tsc:build": "npx tsc",
"test": "node --test test/*.test.js",
"test:fetch": "node --test test/fetch.test.js",
"test:fetch:cjs": "node --test test/fetch.test.cjs",
"test:merge": "node --test test/Lodash.merge.test.js",
"test:argument": "node --test test/argument.test.js",
"deprecate": "npm deprecate -f '@nsnanocat/util@0.0.0-preview' \"this package has been deprecated\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/NSNanoCat/util.git"
},
"files": [
"index.cjs",
"index.js",
"lib",
"polyfill",
"getStorage.mjs",
"types"
],
"dependencies": {
"fetch-cookie": "^3.2.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"typescript": "^5.9.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}