-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
71 lines (71 loc) · 1.95 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
{
"name": "react-typed",
"version": "2.0.12",
"description": "A react wrapper for typed.js",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"files": [
"dist",
"src"
],
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/mjs/index.d.ts"
}
},
"scripts": {
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"postbuild": "echo '{\"type\": \"commonjs\"}'>> dist/cjs/package.json && echo '{\"type\": \"module\"}'>> dist/mjs/package.json",
"start": "storybook dev -p 6007",
"test": "jest --coverage",
"docs": "storybook build -o docs"
},
"author": "Mike Antoniadis <ssbeefeater@gmail.com> (http://ssbeefeater.github.io/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ssbeefeater/react-typed.git"
},
"tags": [
"react",
"typed.js"
],
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.(ts|tsx|js|jsx)$": "ts-jest"
}
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.10",
"@storybook/addon-interactions": "^7.6.10",
"@storybook/addon-links": "^7.6.10",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.10",
"@storybook/react": "^7.6.10",
"@storybook/react-webpack5": "^7.6.10",
"@storybook/test": "^7.6.10",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.69",
"@types/react": "^18.2.47",
"antd": "^5.13.2",
"eslint-plugin-storybook": "^0.6.15",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"storybook": "^7.6.10",
"ts-jest": "^29.1.2",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": ">16.8.0"
},
"dependencies": {
"typed.js": "^2.1.0"
}
}