-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "tauri-settings",
"version": "0.3.5",
"description": "A user settings manager for Tauri inspired by electron-settings.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"dev": "tsc -w",
"doc": "typedoc --options config/typedoc.js",
"npm-publish": "yarn test && yarn build && yarn doc && yarn publish"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/harshkhandeparkar/tauri-settings.git"
},
"keywords": [
"tauri",
"tauri-apps",
"tauri-settings",
"settings-manager"
],
"author": "harshkhandeparkar",
"license": "MIT",
"bugs": {
"url": "https://github.com/harshkhandeparkar/tauri-settings/issues"
},
"homepage": "https://github.com/harshkhandeparkar/tauri-settings#readme",
"devDependencies": {
"@tauri-apps/api": "^1.2.0",
"@types/jest": "^29.2.3",
"jest": "^29.3.1",
"lodash": "^4.17.21",
"ts-jest": "^29.0.3",
"typedoc": "^0.24.8",
"typescript": "^5.1.5"
}
}