-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.72 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
71
72
73
74
75
{
"name": "@trynoice/january",
"version": "0.0.1",
"description": "Common APIs used by Noice Web applications for gapless audio playback.",
"scripts": {
"dev": "parcel demo/index.html",
"build": "tsc",
"build-demo": "parcel build --public-url ./ demo/index.html",
"clean": "rm -rf coverage dist .parcel-cache",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"prepare": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/trynoice/january.git"
},
"author": "Ashutosh Gangwar <[email protected]>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/trynoice/january/issues"
},
"homepage": "https://github.com/trynoice/january",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"parcel": "^2.7.0",
"prettier": "^2.7.1",
"process": "^0.11.10",
"ts-jest": "^29.0.5",
"typescript": "^4.8.3"
},
"peerDependencies": {
"react": "^18.2.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"files": [
"/dist"
],
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
},
"./react": {
"import": "./dist/react.js"
}
},
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
],
"react": [
"dist/react.d.ts"
]
}
},
"targets": {
"main": false,
"types": false
}
}