-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.79 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.79 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
67
68
69
70
{
"name": "@yeez-tech/dianshu-api-sdk",
"version": "0.0.4",
"description": "Javascript implementation for Dianshu API SDK.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"browser": {
"import": "./build/es/index.browser.js"
},
"node": {
"import": "./build/es/index.js",
"require": "./build/commonjs/index.cjs"
},
"default": "./build/es/index.js"
}
},
"scripts": {
"build": "rollup -c",
"test": "npm run test:node && npm run test:browser",
"test:node": "node --experimental-vm-modules node_modules/.bin/jest --config jest.config.node.mjs",
"test:browser": "node --experimental-vm-modules node_modules/.bin/jest --config jest.config.browser.mjs",
"version": "changeset version",
"release": "changeset publish"
},
"files": [
"build",
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"dianshu",
"sdk",
"api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/YeeZTech/dianshu-api-sdk-js.git"
},
"author": "YeeZTechcontact@yeez.tech",
"license": "MIT",
"dependencies": {
"@yeez-tech/meta-encryptor": "^4.3.2",
"buffer": "^6.0.3",
"loglevel": "^1.9.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@jest/globals": "^30.2.0",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^26.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"changeset": "^0.2.6",
"cross-fetch": "^4.1.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"rollup": "^4.9.0",
"rollup-plugin-polyfill-node": "^0.13.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^18.0.0 || >= 18.0.0"
}
}