-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.61 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
{
"name": "@xman.io/xman-js-sdk",
"version": "1.1.1",
"description": "Javascript/typescript SDK to access the data published using XMan.io",
"type": "module",
"main": "./dist/sdk/xman-js-sdk.mjs",
"module": "./dist/sdk/xman-js-sdk.cjs",
"typings": "./dist/sdk/xman-js-sdk.d.ts",
"exports": {
".": {
"import": "./dist/sdk/xman-js-sdk.mjs",
"require": "./dist/sdk/xman-js-sdk.cjs",
"types": "./dist/sdk/xman-js-sdk.d.ts"
}
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"pretest": "yarn build",
"test": "vitest",
"coverage": "vitest run --coverage",
"dist": "rm -rf dist && rollup -c && cp src/index.html dist/index.html && yarn pack"
},
"files": [
"dist/sdk/**/*"
],
"repository": "git+ssh://git@github.com/liquiron/xman-js-sdk.git",
"keywords": [
"XMan I/O",
"xman",
"Javascript",
"typescript",
"SDK",
"Small Data",
"Content Management",
"Realtime",
"Data",
"Manage"
],
"author": "Liquiron, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/liquiron/xman-js-sdk/issues"
},
"homepage": "https://github.com/liquiron/xman-js-sdk#readme",
"dependencies": {
"axios": "^1.3.4",
"https": "^1.0.0"
},
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/node": "^18.15.0",
"@vitest/coverage-c8": "^0.29.2",
"msw": "^1.1.0",
"rollup": "^3.19.1",
"rollup-plugin-dts": "^5.2.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vitest": "^0.29.2"
}
}