-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.04 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@ocmedialab/amp",
"version": "2.0.3",
"description": "A web-based guitar amp that lets you plug in and play instantly.",
"author": "Marcus Badillo",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"default": "./dist/index.es.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"homepage": "https://github.com/ocmedialab/ocml-amp",
"bugs": {
"url": "https://github.com/ocmedialab/ocml-amp/issues"
},
"keywords": [
"react",
"web design",
"ocmedialab",
"ecommerce"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ocmedialab/ocml-amp.git"
},
"size-limit": [
{
"path": "dist/index.es.js",
"limit": "10 KB"
}
],
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"scripts": {
"build": "npm run clean && vite build",
"build:analyze": "npm run build -- --mode analyze",
"clean": "rm -rf dist",
"dev": "npm run build -- --watch",
"lint": "eslint src --ext .ts,.tsx",
"prepare": "husky",
"husky-install": "husky install",
"test:react18": "vitest --config vitest.react18.config.ts",
"size": "size-limit",
"size:json": "size-limit --json",
"lint:commit": "commitlint --edit"
},
"peerDependencies": {
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"react": "^18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@emotion/babel-plugin": "^11.13.5",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@eslint/js": "^9.26.0",
"@size-limit/preset-small-lib": "^11.2.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.15",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"@vitejs/plugin-react": "^4.2.1",
"babel-jest": "^29.7.0",
"eslint": "^9.26.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jsdom": "^26.1.0",
"lint-staged": "^15.5.2",
"prettier": "^3.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup-plugin-visualizer": "^5.14.0",
"size-limit": "^11.2.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.3",
"web-audio-mock": "^0.1.9"
}
}