-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "@mikebeas/mastodon-modal",
"version": "1.0.1",
"description": "Share and follow modals for Mastodon",
"main": "dist/index.js",
"scripts": {
"build": "tsc && cp -r src/MastodonModal/files dist",
"watch": "npm run build && npm-watch",
"lint": "sh ./scripts/lint.sh",
"clean": "rm -rf dist",
"prepublishOnly": "npm run lint && npm run clean && npm run build && git push --tags"
},
"author": "Mike Beasley",
"repository": {
"url": "https://www.github.com/MikeBeas/mastodon-modal"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"license": "UNLICENSED",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.12.10",
"@types/react": "^18.0.26",
"babel-core": "^7.0.0-bridge.0",
"npm-watch": "^0.11.0",
"prop-types": "^15.8.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "ts,tsx,css,png"
}
},
"files": [
"dist/**/*"
]
}