-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.68 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
{
"name": "@teleporthq/react-components",
"version": "1.0.13",
"description": "",
"main": "dist/react-components.js",
"type": "module",
"exports": {
".": {
"import": "./dist/react-components.js",
"require": "./dist/react-components.cjs"
},
"./animate-on-reveal": {
"import": "./dist/animate-on-reveal.es.js",
"umd": "./dist/animate-on-reveal.umd.js"
},
"./style": "./style.css"
},
"scripts": {
"build": "vite build && npm run build:animate-on-reveal",
"build:animate-on-reveal": "vite build -c vite.config.animate-on-reveal.js",
"dev": "vite build --watch",
"test": "vitest run",
"test:watch": "vitest watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teleporthq/thq-react-components.git"
},
"author": "TeleportHQ",
"license": "ISC",
"bugs": {
"url": "https://github.com/teleporthq/thq-react-components/issues"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm test"
}
},
"homepage": "https://github.com/teleporthq/thq-react-components#readme",
"peerDependencies": {
"react": ">=16.x"
},
"dependencies": {
"dayjs": "^1.11.8"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src",
"package.json",
"README.md"
],
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.0.0",
"@types/react": "^18.2.14",
"@vitejs/plugin-react": "^4.0.1",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"prettier": "^3.2.3",
"pretty-quick": "^3.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vite": "^4.3.9",
"vitest": "^0.32.2"
}
}