-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.75 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
{
"name": "@rc5/nut",
"version": "0.1.3",
"description": "A practical library of JavaScript tool functions extracted and summarized at work",
"scripts": {
"dev": "rollup -c -w",
"dev:dts": "tsc --emitDeclarationOnly -w",
"test": "jest",
"build": "pnpm build:js && pnpm build:dts",
"build:js": "rm -rf dist && rollup -c",
"build:dts": "tsc --noEmit && tsc --emitDeclarationOnly",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"dependencies": {
"@types/fs-extra": "^11.0.4",
"fs-extra": "^11.2.0",
"chalk": "^4.1.2",
"deepmerge": "^4.3.1",
"enquirer": "^2.4.1",
"execa": "^5.1.1",
"lru-cache": "^10.1.0",
"node-fetch": "^2.7.0",
"ora": "^5.4.1",
"read-pkg": "^5.2.0",
"semver": "^7.5.4",
"strip-ansi": "^6.0.1"
},
"devDependencies": {
"@rc5/eslint-config-core": "^0.0.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@types/node-fetch": "^2.6.11",
"@types/semver": "^7.5.6",
"conventional-changelog-cli": "^4.1.0",
"esbuild": "^0.19.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.9.4",
"rollup-plugin-esbuild": "^6.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"vitepress": "1.0.0-rc.36"
},
"jest": {
"preset": "ts-jest",
"testMatch": [
"<rootDir>/src/__tests__/*.(test|spec).ts"
]
},
"eslintConfig": {
"extends": [
"@rc5/core"
]
},
"author": "@rc5",
"license": "MIT",
"homepage": "https://github.com/luckrya/nut#readme",
"bugs": {
"url": "https://github.com/luckrya/nut/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luckrya/nut.git"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"nut",
"javascript",
"typescript",
"util",
"utils",
"utility",
"browser",
"client",
"node",
"functional"
],
"files": [
"dist",
"CHANGELOG.md",
"RC5/nut/docs/public/logo.png"
],
"main": "./dist/client/index.js",
"module": "./dist/client/index.mjs",
"typings": "./dist/client/index.d.ts",
"unpkg": "./dist/nut.umd.js",
"exports": {
".": {
"import": "./dist/client/index.mjs",
"require": "./dist/client/index.js",
"types": "./dist/client/index.d.ts"
},
"./node": {
"import": "./dist/node/index.mjs",
"require": "./dist/node/index.js",
"types": "./dist/node/index.d.ts"
}
},
"sideEffects": false
}