-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.24 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
{
"name": "@crystallize/reactjs-components",
"license": "MIT",
"version": "2.1.0",
"author": "Crystallize <[email protected]> (https://crystallize.com)",
"contributors": [
"Håkon Krogh <[email protected]>",
"Sébastien Morel <[email protected]>",
"Dhairya Dwivedi <[email protected]>",
"Vasil Dimitrov <[email protected]>"
],
"scripts": {
"watch": "tsc -W",
"build": "tsup src/index.ts --format esm,cjs --dts",
"test": "jest",
"bump": "yarn tsc && yarn version --no-git-tag-version --new-version"
},
"repository": {
"type": "git",
"url": "https://github.com/CrystallizeAPI/reactjs-components.git"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"dependencies": {
"@crystallize/js-api-client": "*"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/node": "^17.0.14",
"@types/react": "^17 || ^18",
"@types/react-dom": "^17 || ^18",
"jest": "^27.5.1",
"tsup": "^7.2.0",
"typescript": "^4.5.5"
}
}