generated from dev-protocol/template-repos-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.68 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
{
"name": "@devprotocol/elements",
"version": "1.5.3",
"description": " Web Components for Dev Protocol",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./constants": {
"import": "./dist/constants.mjs",
"require": "./dist/constants.js",
"types": "./constants.d.ts"
}
},
"types": "dist/index.d.ts",
"files": [
"dist/*.mjs",
"dist/*.js",
"dist/*.ts",
"*.d.ts",
"bundled",
"!**/*.test.*",
"!**/test.*"
],
"scripts": {
"dev": "run-p vite watch",
"vite": "vite",
"test": "wtr --puppeteer",
"build": "npm run build:ts && npm run build:rollup && npm run build:rollup:elements",
"build:ts": "tsc",
"build:rollup": "rollup -c",
"build:rollup:elements": "rollup -c rollup.config.elements.js",
"watch": "npm run build:rollup:elements -w",
"prebuild": "rimraf dist bundled constants.d.ts",
"lint": "npm run lint:eslint && npm run lint:format",
"lint:eslint": "eslint . --ext .ts,.js --fix",
"lint:format": "prettier --write '**/*.{ts,js,json,md,yml}'",
"prepack": "npm run test && npm run build",
"prepare": "husky install"
},
"author": "Dev Protocol",
"license": "MIT",
"devDependencies": {
"@devprotocol/util-ts": "4.0.0",
"@esm-bundle/chai": "4.3.4-fix.0",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-multi-entry": "6.0.1",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-typescript": "11.1.6",
"@rollup/pluginutils": "5.1.4",
"@types/dotenv": "8.2.3",
"@types/glob": "8.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "22.10.5",
"@types/ramda": "0.30.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@web/dev-server-esbuild": "1.0.3",
"@web/test-runner": "0.19.0",
"@web/test-runner-puppeteer": "0.17.0",
"autoprefixer": "10.4.20",
"bundled-ethers": "github:dev-protocol/bundled-ethers",
"dotenv": "16.4.7",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-functional": "4.4.1",
"ethers": "6.13.5",
"glob": "11.0.0",
"husky": "9.1.7",
"npm-run-all2": "7.0.2",
"postcss": "8.4.49",
"prettier": "3.4.2",
"ramda": "0.30.1",
"rimraf": "6.0.1",
"rollup": "2.79.2",
"rollup-plugin-dts": "4.2.3",
"rxjs": "7.8.1",
"tailwindcss": "3.4.17",
"type-fest": "4.31.0",
"typescript": "4.9.5",
"typescript-lit-html-plugin": "0.9.0",
"vite": "6.0.7"
},
"repository": "git+https://github.com/dev-protocol/dev-elements.git",
"bugs": {
"url": "https://github.com/dev-protocol/dev-elements/issues"
},
"homepage": "https://github.com/dev-protocol/dev-elements#readme",
"dependencies": {
"@aggre/ullr": "^3.2.0",
"lit": "^3.0.0"
}
}