-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 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
{
"name": "@mengjx/jinrishici",
"version": "1.0.2",
"description": "获取今日诗词,更优雅的esm和ts类型支持",
"keywords": [
"jinrishici",
"typescript",
"今日诗词",
"诗词api"
],
"author": "GraciaMeng <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"type": "module",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/bundle.cjs.js",
"import": "./dist/bundle.esm.js"
},
"./*": "./*"
},
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"dev": "tsup src/*.ts --watch src",
"publishPkg": "npm publish",
"test_dev": "node ./examples/index.js"
},
"homepage": "https://github.com/GraciaMeng/jinrishici#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": "https://github.com/GraciaMeng/jinrishici",
"bugs": {
"url": "https://github.com/GraciaMeng/jinrishici/issues"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"rimraf": "^5.0.1",
"rollup": "^2.79.0",
"tslib": "^2.4.0",
"tsup": "^6.2.3",
"typescript": "^4.8.2"
}
}