-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 870 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 870 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
38
{
"name": "@aspect-mark/shared",
"type": "module",
"version": "0.0.0",
"description": "Shared utilities for skills monorepo",
"author": "JS-mark <aspect_mark@163.com>",
"license": "MIT",
"homepage": "https://github.com/JS-mark/skills/tree/main/packages/shared",
"repository": {
"type": "git",
"url": "git+https://github.com/JS-mark/skills.git",
"directory": "packages/shared"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown"
},
"devDependencies": {
"tsdown": "catalog:"
}
}