-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.2 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
{
"name": "@bottom-sheet/types",
"version": "1.0.6",
"description": "TypeScript definitions that are shared between packages",
"keywords": [
"typescript",
"bottom-sheet",
"react-spring-bottom-sheet"
],
"homepage": "https://react-spring.bottom-sheet.dev",
"bugs": {
"url": "https://github.com/bottom-sheet/types/issues"
},
"repository": "bottom-sheet/types",
"license": "MIT",
"author": "Cody Olsen <[email protected]>",
"sideEffects": false,
"main": "",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist/**",
"build": "tsc",
"dev": "tsc --watch",
"lint": "prettier --check .",
"lint:format": "prettier --write .",
"prepublishOnly": "npm run build",
"test": "npm run lint && npm run build"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"prettier": "^2.6.2",
"prettier-plugin-packagejson": "^2.2.18",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"typescript": "^4.7.2"
},
"publishConfig": {
"access": "public"
}
}