This repository has been archived by the owner on Sep 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
131 lines (131 loc) · 3.13 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@kaleidawave/prism",
"version": "1.5.7",
"description": "Isomorphic web app compiler",
"main": "./cjs/node.cjs",
"browser": "./esm/web.js",
"exports": {
"./package.json": "./package.json",
".": {
"node": {
"require": "./cjs/node.cjs"
}
},
"./bin": {
"node": "./lib/node/cli.js"
},
"./web": {
"browser": {
"import": "./esm/web.js",
"module": "./esm/web.js",
"default": "./lib/browser/web.js"
}
},
"./import": {
"node": {
"import": "./mjs/import.mjs"
}
}
},
"scripts": {
"test": "jest",
"build": "npm run build-bundle && npm run build-packemon",
"build-packemon": "packemon build --declaration standard",
"postbuild-packemon": "node post-build.js",
"build-tsc": "tsc",
"build-bundle": "ts-node inject-bundle.ts",
"clean": "packemon clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaleidawave/prism.git"
},
"keywords": [
"web-components",
"ssr",
"template",
"isomorphic",
"framework",
"compiler"
],
"author": "kaleidawave",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaleidawave/prism/issues"
},
"files": [
"cjs",
"cjs/",
"cjs/**/*.{cjs,map}",
"dts/**/*.d.ts",
"esm",
"esm/",
"esm/**/*.{js,map}",
"lib",
"lib/",
"lib/**/*.{js,map}",
"mjs",
"mjs/",
"mjs/**/*.{mjs,map}"
],
"homepage": "https://github.com/kaleidawave/prism#readme",
"// Only used for testing and development:": "",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/jest-cli": "^24.3.0",
"@types/node": "^13.13.48",
"jest": "^25.5.4",
"jest-cli": "^26.5.3",
"packemon": "^0.15.0",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^3.9.9"
},
"packemon": [
{
"inputs": {
"index": "src/node.ts"
},
"format": "cjs",
"platform": "node"
},
{
"inputs": {
"bin": "src/cli.ts"
},
"platform": "node"
},
{
"inputs": {
"web": "src/web.ts"
},
"platform": "browser",
"support": "current"
},
{
"inputs": {
"import": "src/web.ts"
},
"platform": "node",
"format": "mjs",
"support": "current"
}
],
"jest": {
"preset": "ts-jest"
},
"engines": {
"node": ">=10.3.0",
"npm": ">=6.1.0"
},
"dependencies": {},
"bin": {
"prism": "lib/node/cli.js"
},
"directories": {
"example": "examples",
"test": "tests"
},
"type": "commonjs",
"types": "./dts/node.d.ts"
}