-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.27 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.27 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
64
65
{
"name": "@silvermine/tauri-plugin-sqlite",
"version": "0.1.0",
"description": "SQLite database interface for Tauri applications",
"type": "module",
"types": "./dist-js/index.d.ts",
"main": "./dist-js/index.cjs",
"module": "./dist-js/index.js",
"exports": {
"types": "./dist-js/index.d.ts",
"import": "./dist-js/index.js",
"require": "./dist-js/index.cjs"
},
"files": [
"dist-js",
"permissions",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"check-node-version": "check-node-version --npm 10.5.0",
"commitlint": "commitlint --from ${COMMITLINT_FROM:-002bcc8} --to ${COMMITLINT_TO:-HEAD}",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"type-check:ts": "tsc -b --pretty",
"type-check": "run-p type-check:ts",
"markdownlint": "markdownlint-cli2",
"prepare": "rollup -c",
"standards": "npm run eslint && npm run type-check && npm run markdownlint && npm run rust:lint && npm run commitlint",
"rust:lint": "cargo lint-clippy && cargo lint-fmt",
"rust:lint:fix": "cargo fix-clippy && cargo fix-fmt",
"test": "vitest run && cargo test --workspace --lib --test '*'",
"test:rust": "cargo test --workspace --lib --test '*'",
"test:rust:unit": "cargo test --workspace --lib",
"test:rust:integration": "cargo test --workspace --test '*'",
"test:ts": "vitest run",
"test:watch": "vitest"
},
"author": "Jeremy Thomerson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/silvermine/tauri-plugin-sqlite.git"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.3.0",
"@silvermine/eslint-config": "github:silvermine/eslint-config-silvermine#3d0c92ca8d18c4bb66d7b01cf226b1963cbd1319",
"@silvermine/standardization": "2.2.3",
"@silvermine/typescript-config": "1.0.0",
"@tauri-apps/api": "2.9.1",
"eslint": "8.57.1",
"jsdom": "26.1.0",
"npm-run-all": "4.1.5",
"rollup": "4.53.3",
"tslib": "2.8.1",
"typescript": "5.8.3",
"vitest": "3.2.3"
},
"peerDependencies": {
"@tauri-apps/api": "2.9.1"
}
}