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
| {
| "name": "@dh-software/project-manager-x-types",
| "version": "1.2.1",
| "description": "",
| "type": "module",
| "main": "dist/mjs/project-manager-types.js",
| "module": "dist/mjs/project-manager-types.js",
| "typings": "dist/mjs/project-manager-types.d.ts",
| "files": [
| "dist/mjs"
| ],
| "scripts": {
| "build:clean": "rimraf build dist",
| "build:dev": "npm run build:clean && npx tsc && npx rollup -c",
| "build:prod": "npm run build:clean && npx tsc && npx rollup -c",
| "prepublishOnly": "npm run build:prod",
| "test": "echo \"Error: no test specified\" && exit 1"
| },
| "keywords": [],
| "author": "",
| "license": "ISC",
| "devDependencies": {
| "@rollup/plugin-node-resolve": "13.3.0",
| "@tsconfig/recommended": "1.0.1",
| "construct-style-sheets-polyfill": "3.1.0",
| "dh-components": "git+ssh://git.furnco.de:29418/utils/dh-components.git#9fffb94c97f3ba387932ba47292800d846a574fb",
| "esbuild": "0.15.1",
| "lit": "2.2.8",
| "rimraf": "3.0.2",
| "rollup": "2.77.3",
| "rollup-plugin-dts": "4.2.2",
| "rollup-plugin-esbuild": "4.9.1",
| "rollup-plugin-lit-css": "4.0.0",
| "rollup-plugin-sass": "1.2.13",
| "sass": "1.54.4",
| "typescript": "4.7.4"
| },
| "lint-staged": {
| "*.{js, css, md, ts, sass, html}": "prettier --write"
| }
| }
|
|