-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.78 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
{
"name": "earwurm",
"version": "0.0.1",
"description": "Browser audio for the modern age",
"author": "Curtis Dulmage",
"license": "ISC",
"keywords": [
"browser",
"web",
"audio",
"sound",
"webm"
],
"homepage": "https://github.com/beefchimi/earwurm#readme",
"bugs": {
"url": "https://github.com/beefchimi/earwurm/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beefchimi/earwurm.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"type": "module",
"main": "./dist/earwurm.umd.js",
"module": "./dist/earwurm.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/earwurm.es.js",
"require": "./dist/earwurm.umd.js"
}
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "rm -rf dist",
"nuke": "npm run clean && rm -rf node_modules && rm -rf package-lock.json && npm cache clean --force",
"build": "npm run clean && tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx",
"report": "changeset",
"release": "npm run build && changeset publish"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"emitten": "^0.0.2"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^32.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vite-plugin-dts": "^1.7.1"
}
}