-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.57 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@scalar/galaxy-node",
"version": "0.2.2",
"description": "The Scalar Galaxy is an example OpenAPI document to test OpenAPI tools and libraries. It's a fictional universe with fictional planets and fictional data.",
"author": "Scalar Galaxy",
"repository": {
"type": "git",
"url": "git+https://github.com/scalar/galaxy-node.git"
},
"type": "module",
"sideEffects": false,
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
},
"./*.mjs": {
"types": "./dist/esm/*.d.ts",
"import": "./dist/esm/*.js",
"default": "./dist/esm/*.js"
},
"./*.js": {
"types": "./dist/esm/*.d.ts",
"require": "./dist/cjs/*.js",
"default": "./dist/cjs/*.js"
},
"./*": {
"types": "./dist/esm/*.d.ts",
"import": "./dist/esm/*.js",
"require": "./dist/cjs/*.js",
"default": "./dist/esm/*.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"api.md",
"SKILL.md"
],
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json && node scripts/finalize-build.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.cjs.json --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"standardwebhooks": "^1.0.0"
},
"devDependencies": {
"typescript": "^6.0.0"
},
"license": "Apache-2.0"
}