-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.61 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.61 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
{
"name": "seatable-html-page-sdk",
"version": "0.0.12",
"description": "JavaScript SDK for embedding HTML pages within SeaTable Universal Apps.",
"main": "./lib/index.js",
"module": "./es/index.js",
"browser": "./dist/index.js",
"unpkg": "./dist/index.min.js",
"jsdelivr": "./dist/index.min.js",
"exports": {
".": {
"import": "./es/index.js",
"require": "./lib/index.js",
"browser": "./dist/index.js",
"default": "./es/index.js"
}
},
"private": false,
"scripts": {
"test": "jest --watchAll",
"test-cov": "jest --coverage",
"eslint": "eslint ./src/**",
"eslint-fix": "eslint ./src/** --fix",
"build": "rm -rf dist lib es && NODE_ENV=production rollup -c",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/seatable/seatable-html-page-sdk"
},
"bugs": {
"url": "https://github.com/seatable/seatable-html-page-sdk/issues"
},
"keywords": [
"HTML page",
"SDK"
],
"author": "SeaTable",
"files": [
"dist",
"lib",
"es"
],
"dependencies": {
"axios": "~1.16.*"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^1.0.0",
"@types/jest": "^30.0.0",
"babel-jest": "^30.2.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"jest": "^30.2.0",
"rollup": "2.80.0"
}
}