-
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.76 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.76 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": "@themost/sql.js",
"version": "1.1.0",
"description": "@themost-framework data adapter for sql.js",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.js",
"type": "module",
"scripts": {
"test": "jest --config jest.config.cjs",
"build": "rimraf dist && rollup --config rollup.config.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/themost-framework/sqljs.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/themost-framework/sqljs/issues"
},
"peerDependencies": {
"@themost/query": "^2.14.11"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@rollup/plugin-typescript": "^12.1.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@themost/query": "^2.14.11",
"@types/async": "^3.2.24",
"@types/crypto-js": "^4.2.2",
"@types/http-server": "^0.12.4",
"@types/jasmine": "^4.3.2",
"@types/lodash": "^4.17.16",
"@types/node": "^17.0.23",
"@types/sql.js": "^1.4.9",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"cross-fetch": "^4.1.0",
"dotenv": "^8.2.0",
"eslint": "^9.15.0",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"globals": "^15.12.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^3.0.2",
"rollup": "^4.27.4",
"ts-jest": "^29.2.5",
"tslib": "^2.5.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"dependencies": {
"crypto-js": "^4.2.0",
"lodash": "^4.17.21",
"sql.js": "^1.13.0",
"uuid": "^11.1.0"
}
}