-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.18 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
64
65
66
67
68
69
70
{
"name": "@dldc/zendb-sqljs",
"version": "7.0.0",
"description": "ZenDB driver for SQL.js",
"keywords": [],
"homepage": "https://github.com/dldc-packages/zendb-sqljs#readme",
"bugs": {
"url": "https://github.com/dldc-packages/zendb-sqljs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dldc-packages/zendb-sqljs.git"
},
"license": "MIT",
"author": "Etienne Dldc <e.deladonchamps@gmail.com>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/mod.d.ts",
"import": "./dist/mod.js",
"require": "./dist/mod.cjs"
}
},
"main": "./dist/mod.js",
"types": "./dist/mod.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsup --format cjs,esm src/mod.ts --dts",
"build:watch": "tsup --watch --format cjs,esm src/mod.ts --dts",
"changelog": "auto-changelog --stdout --hide-credit true --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs",
"lint": "prettier . --check && eslint . && tsc --noEmit",
"lint:fix": "prettier . --write . && eslint . --fix",
"release": "release-it --only-version",
"test": "pnpm run lint && vitest run --coverage",
"test:run": "vitest run",
"test:watch": "vitest --watch",
"test:watch:coverage": "vitest --watch --coverage",
"typecheck": "tsc",
"typecheck:watch": "tsc --watch"
},
"devDependencies": {
"@dldc/zendb": "npm:@jsr/dldc__zendb@^10.0.0",
"@eslint/js": "^9.10.0",
"@types/node": "^22.5.5",
"@types/sql.js": "^1.4.9",
"@vitest/coverage-v8": "^2.1.1",
"auto-changelog": "^2.5.0",
"eslint": "^9.10.0",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"rimraf": "^6.0.1",
"sql.js": "^1.11.0",
"tsup": "^8.2.4",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0",
"vitest": "^2.1.1"
},
"peerDependencies": {
"@dldc/zendb": "^10.0.0",
"sql.js": "^1.11.0"
},
"packageManager": "pnpm@9.11.0+sha256.1c0e33f70e5df9eede84a357bdfa0b1f9dba6e58194628d48a1055756f553754",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}