-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.43 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
{
"name": "helder.store",
"version": "0.0.0-alpha.27",
"license": "MIT",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./*": {
"import": "./dist/esm/helder/store/*",
"require": "./dist/cjs/helder/store/*"
}
},
"typings": "./dist/esm/index.d.ts",
"typesVersions": {
"*": {
"dist/esm/index.d.ts": [
"./dist/esm/index.d.ts"
],
"*": [
"./dist/esm/helder/store/*"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "lix download && symlink-dir . node_modules/helder.store",
"test": "lix test-node.hxml && node bin/node/test.cjs",
"test:node": "lix test-node.hxml && node bin/node/test.cjs",
"test:node:sqljs": "lix test-node.hxml -D sqljs && node bin/node/test.cjs",
"test:php": "lix test-php.hxml && php bin/php/index.php",
"test:ts": "lix build-js.hxml && uvu -r tsm test/ts",
"build": "lix build-js.hxml"
},
"devDependencies": {
"@types/better-sqlite3": "^5.4.1",
"@types/sql.js": "^1.4.2",
"better-sqlite3": "^7.4.1",
"cross-env": "^7.0.3",
"dev-null-cli": "^1.0.0",
"dts2hx": "^0.15.3",
"esm": "^3.2.25",
"lix": "^15.11.4",
"sql.js": "^1.5.0",
"symlink-dir": "^5.0.0",
"tsm": "^2.1.0",
"typescript": "^4.4.4",
"uvu": "^0.4.1"
}
}