-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 941 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 941 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
{
"name": "@jvavscratch/generator",
"version": "1.0.0",
"description": "jvavscratch代码生成器模块",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./call-expressions": {
"require": "./dist/src/generator/CallExpressionSub/index.js",
"import": "./dist/src/generator/CallExpressionSub/index.js",
"types": "./dist/src/generator/CallExpressionSub/index.d.ts"
},
"./types": {
"require": "./dist/src/generator/types/index.js",
"import": "./dist/src/generator/types/index.js",
"types": "./dist/src/generator/types/index.d.ts"
}
},
"scripts": {
"build": "tsc"
},
"dependencies": {
"@babel/types": "^7.23.6",
"@jvavscratch/core": "^1.0.3",
"@jvavscratch/types": "^1.0.1",
"@jvavscratch/utils": "^1.0.3"
}
}