-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.07 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.07 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
{
"name": "@silvermine/tauri-plugin-http-client",
"version": "0.1.0",
"description": "HTTP client plugin 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 11.8.0",
"commitlint": "commitlint --from ${COMMITLINT_FROM:-HEAD~1}",
"eslint": "eslint .",
"markdownlint": "markdownlint-cli2",
"prepare": "rollup -c",
"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:ts": "vitest run",
"test:ts:watch": "vitest",
"test:rust": "cargo test --workspace --lib",
"type-check:ts": "tsc -b --pretty",
"type-check": "run-p type-check:ts",
"standards": "npm run eslint && npm run type-check && npm run markdownlint && npm run rust:lint && npm run commitlint && npm run check-node-version",
"tauri": "tauri"
},
"author": "Jeremy Thomerson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/silvermine/tauri-plugin-http-client.git"
},
"devDependencies": {
"@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",
"@tauri-apps/cli": "2.9.5",
"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.0"
}
}