-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.66 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
{
"name": "@prezly/uploadcare-image",
"version": "0.3.2",
"description": "Component to handle images served through Uploadcare or its proxy",
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/prezly/uploadcare-image.git"
},
"bugs": {
"url": "https://github.com/prezly/uploadcare-image/issues"
},
"homepage": "https://github.com/prezly/uploadcare-image#readme",
"scripts": {
"clean": "rimraf build/ node_modules/",
"copy-styles": "cp ./src/styles/styles.css ./build/styles.css",
"build-js": "tsc --project .",
"build": "npm run build-js && npm run copy-styles",
"test": "echo \"Tests? maybe next time ;)\" && exit 0",
"typecheck": "tsc --noEmit --incremental --project .",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --check './**/*.(js|ts|tsx|css)'",
"prettier:fix": "npm run prettier -- --write --no-list-different",
"check": "npm run lint && npm run typecheck",
"release": "npm run release:prepare && npm run release:publish",
"release:preview": "npm run release:prepare && np prerelease --any-branch --no-release-draft --tag=preview",
"release:prepare": "npm run clean && npm install && npm run check && npm run build",
"release:publish": "np"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@prezly/eslint-config": "^4.2.0",
"@types/react": "^17.0.3",
"eslint": "^8.26.0",
"np": "^7.4.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
}
}