-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 853 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 853 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
{
"name": "ar-export-module",
"version": "1.0.2",
"description": "Export tool for export separated modules from main module for AtomicReact-TS.",
"main": "dist/index.js",
"type": "module",
"files": [
"./dist"
],
"scripts": {
"build": "rm -rf ./dist && tsc -b tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/AtomicReact/ar-export-module.git"
},
"keywords": [
"atomicreact-ts",
"exports"
],
"author": "Guihgo",
"license": "MIT",
"bugs": {
"url": "https://github.com/AtomicReact/ar-export-module/issues"
},
"homepage": "https://github.com/AtomicReact/ar-export-module#readme",
"devDependencies": {
"@types/node": "^22.8.7",
"@types/typescript": "^2.0.0",
"typescript": "^5.6.3"
},
"peerDependencies": {
"atomicreact-ts": ">=0.4.4"
}
}