-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.14 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@rexa-developer/tiks",
"version": "0.3.0",
"description": "Procedural UI sounds for the web. Zero audio files. Pure synthesis.",
"homepage": "https://rexa-developer.github.io/tiks",
"repository": {
"type": "git",
"url": "https://github.com/rexa-developer/tiks.git"
},
"bugs": {
"url": "https://github.com/rexa-developer/tiks/issues"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js",
"require": "./dist/react.cjs"
},
"./vue": {
"types": "./dist/vue.d.ts",
"import": "./dist/vue.js",
"require": "./dist/vue.cjs"
},
"./svelte": {
"types": "./dist/svelte.d.ts",
"import": "./dist/svelte.js",
"require": "./dist/svelte.cjs"
},
"./solid": {
"types": "./dist/solid.d.ts",
"import": "./dist/solid.js",
"require": "./dist/solid.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"version": "node scripts/sync-demo-version.mjs && git add demo/index.html"
},
"keywords": [
"ui-sounds",
"web-audio",
"procedural-audio",
"sound-effects",
"interaction-design",
"ux",
"react",
"vue"
],
"license": "MIT",
"peerDependencies": {
"react": ">=18.0.0",
"vue": ">=3.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"vue": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@testing-library/react": "^16.0.0",
"@types/react": "^19.0.0",
"@vue/test-utils": "^2.4.6",
"jsdom": "^26.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.0.0",
"typescript": "^5.5.0",
"vitest": "^3.0.0",
"vue": "^3.5.32"
}
}