-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "@veams/helpers",
"version": "2.0.1",
"description": "Helpers library for Veams.",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"type": "module",
"exports": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"scripts": {
"clean": "rm -rf ./lib",
"build:ts:esm": "tsc --project tsconfig.json --outDir lib/esm --declarationDir lib/esm --declaration --module esnext",
"build:ts:cjs": "tsc --project tsconfig.json --outDir lib/cjs --declaration false --module commonjs --moduleResolution node16",
"build": "npm run build:ts:esm && npm run build:ts:cjs",
"dev": "npm run build:ts:esm --watch",
"prepublish": "npm run build"
},
"devDependencies": {
"typescript": "4.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/veams/helpers.git"
},
"keywords": [
"veams",
"veams-plugins"
],
"author": "Sebastian Fitzner",
"license": "MIT",
"bugs": {
"url": "https://github.com/veams/helpers/issues"
},
"homepage": "https://veams.org/",
"dependencies": {}
}