forked from Viima/jquery-comments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.05 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
{
"name": "ax-comments",
"title": "ax-comments",
"version": "2.1.4",
"author": {
"name": "Adrian Z."
},
"maintainers": [
{
"name": "Adrian Z."
}
],
"description": "Standalone web component for implementing an out-of-the-box commenting solution to any web application with an existing backend",
"license": "MIT",
"type": "module",
"typings": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./dist/index.d.ts",
"node": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "npm run build:tsc && npm run build:bundle && npm run build:css",
"build:tsc": "tsc --project src/tsconfig.json",
"build:bundle": "esbuild src/index.ts --bundle --format=esm --platform=browser --target=esnext --outfile=dist/bundle/comments-element-esm.js --legal-comments=none",
"build:css": "tsx --tsconfig tsconfig-template.json script/compact-css.ts",
"test": "node --import tsx script/run-tests.ts | faucet"
},
"files": [
"dist/*.js",
"dist/*.ts",
"dist/*.map",
"dist/css/",
"dist/options/",
"dist/subcomponent/",
"dist/bundle/",
"src/",
"tsconfig-template.json"
],
"homepage": "https://adanski.github.io/ax-comments/",
"keywords": [
"web component",
"javascript",
"plugin",
"commenting",
"discussion",
"conversation"
],
"repository": {
"type": "git",
"url": "https://github.com/adanski/ax-comments.git"
},
"engines": {
"node": ">=20.9.0"
},
"dependencies": {
"@textcomplete/core": "^0.1.13",
"@textcomplete/textarea": "^0.1.13",
"eventemitter3": "^5.0.1",
"dompurify": "^3.0.6"
},
"devDependencies": {
"@types/node": "~20.10.4",
"@types/dompurify": "~3.0.5",
"typescript": "~5.3.3",
"tslib": "~2.6.2",
"glob": "~10.3.10",
"tsx": "~4.6.2",
"jsdom": "~23.0.1",
"faucet": "~0.0.4",
"c8": "~8.0.1",
"esbuild": "~0.19.9",
"magic-string": "~0.30.5"
}
}