-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 786 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 786 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
{
"name": "@hyper-hyper-space/starter-project-ts",
"version": "0.0.1",
"description": "An empty Hyper Hyper Space project that can be used as a starting point for new datatypes, using TypeScript.",
"main": "dist/index.js",
"repository": "https://github.com/hyperhyperspace/starter-project-ts",
"author": "Your Name Here",
"license": "MIT",
"private": false,
"source": "src/index.ts",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx tsc",
"clean": "rm -rf ./dist/*",
"winclean": "if exist dist (rmdir dist /s /q) && mkdir dist"
},
"devDependencies": {
"typescript": "^4.3.5",
"@hyper-hyper-space/core": "0.10.1"
},
"dependencies": {
"tslib": "^2.3.1"
},
"peerDependencies": {
"@hyper-hyper-space/core": "0.10.1"
}
}