-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 811 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 811 Bytes
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
{
"name": "@swipecast/shared",
"version": "1.0.0",
"description": "Shared business logic for Swipecast React Native and Web applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"swipecast",
"shared",
"business-logic",
"react-native",
"web"
],
"author": "",
"license": "UNLICENSED",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.0"
}
}