-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 848 Bytes
/
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
{
"name": "template-project",
"version": "0.0.0",
"main": "dist/index.js",
"source": "src/index.tsx",
"types": "dist/index.d.ts",
"repository": "git@github.com:hamlim/template-project.git",
"author": "Matt Hamlin <matthewjameshamlin@gmail.com>",
"license": "MIT",
"scripts": {
"build": "swc ./src -d ./dist --ignore ./__tests__/**/*",
"prepub": "bun run build",
"pub": "yarn npm publish --access public",
"tsc": "tsc --noEmit"
},
"devDependencies": {
"@happy-dom/global-registrator": "^12.1.6",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.88",
"@swc/jest": "0.2.29",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"turbo": "^1.9.3",
"typescript": "^5.0.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}