-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.16 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
{
"name": "@pictogrammers/element",
"version": "0.0.38",
"description": "Web Component Element for TypeScript",
"module": "./dist/element.esm.js",
"main": "./dist/element.common.js",
"types": "./dist/element.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "run-s build:common build:rename:common build:esm build:rename:esm",
"build:rename:common": "node -e \"require('fs').rename('dist/element.js', 'dist/element.common.js', () => {})\"",
"build:rename:esm": "node -e \"require('fs').rename('dist/element.js', 'dist/element.esm.js', () => {})\"",
"build:common": "tsc -p tsconfig.common.json",
"build:esm": "tsc -p tsconfig.esm.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Templarian/Element.git"
},
"keywords": [
"web",
"component",
"htmlelement"
],
"author": "Austin Andrews",
"license": "MIT",
"bugs": {
"url": "https://github.com/Templarian/Element/issues"
},
"homepage": "https://github.com/Templarian/Element#readme",
"devDependencies": {
"npm-run-all": "^4.1.5",
"typescript": "^5.3.2"
}
}