-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 KB
/
package.json
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
{
"name": "ts-build-octopus",
"version": "1.2.2",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"build:clean": "rm -rf ./build",
"build": "npm-run-all build:clean compile && node ./scripts/prepare-package-json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sr-shifu/ts-build-octopus.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"main": "./build/cjs/lib.js",
"module": "./build/esm/lib.js",
"types": "index.d.ts",
"exports": {
"./*": {
"types": "./build/types/*.d.ts",
"require": "./build/cjs/*.js",
"import": "./build/esm/*.js",
"default": "./build/esm/*.js"
},
"./package.json": "./package.json"
},
"keywords": [],
"author": "Ildar Sharafeev",
"license": "ISC",
"bugs": {
"url": "https://github.com/sr-shifu/ts-build-octopus/issues"
},
"homepage": "https://github.com/sr-shifu/ts-build-octopus#readme",
"devDependencies": {
"@types/node": "^18.11.17",
"npm-run-all": "^4.1.5",
"typescript": "^4.9.4"
}
}