-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.55 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
{
"name": "@ciderapp/pluginkit",
"version": "0.0.7",
"description": "",
"repository": "ciderapp/pluginkit",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.mjs"
},
"./mDNS": {
"types": "./build/mDNS.d.ts",
"import": "./build/mDNS.mjs"
},
"./vue/*.vue": {
"import": "./build/vue/*.vue"
},
"./types": {
"import": "./src/api/ciderapi-types/*.ts"
}
},
"module": "./build/index.mjs",
"types": "./build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint . && prettier -c .",
"lint:fix": "automd && eslint . --fix && prettier -w .",
"prepack": "pnpm build",
"play": "jiti playground",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsc --noEmit --skipLibCheck"
},
"dependencies": {
"@types/musickit": "ciderapp/musickit-types"
},
"devDependencies": {
"@types/lodash": "^4.17.9",
"@types/node": "^22.1.0",
"@vitest/coverage-v8": "^2.0.5",
"automd": "^0.3.8",
"changelogen": "^0.5.5",
"eslint": "^9.8.0",
"eslint-config-unjs": "^0.3.2",
"jiti": "^2.0.0-beta.3",
"lodash": "^4.17.21",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"unbuild": "^3.0.0-rc.7",
"vitest": "^2.0.5",
"vue": "^3.5.10"
},
"packageManager": "[email protected]"
}