-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.15 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
{
"name": "@aggre/ullr",
"version": "3.2.0",
"description": "Functional Web Components",
"type": "module",
"main": "dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/ullr.d.ts"
},
"types": "dist/ullr.d.ts",
"files": [
"dist/*.mjs",
"dist/*.js",
"dist/*.ts",
"!**/*.test.*",
"!**/test.js"
],
"scripts": {
"test": "wtr dist/test.js --node-resolve --puppeteer && mocha dist/test.js --require ./node_modules/browser-env/register.js",
"pretest": "npm run build",
"build": "npm run build:ts && npm run build:rollup",
"build:ts": "tsc -p ./",
"build:rollup": "rollup -c",
"prebuild": "npm run lint && npm run clean",
"clean": "rimraf dist",
"lint": "npm run lint:eslint && npm run lint:format",
"lint:eslint": "eslint ./src --fix",
"lint:format": "prettier --write '**/*.{ts,json,md,yml}'",
"prepack": "npm run build"
},
"author": "aggre",
"contributors": [
"aggre <hiroyuki.aggre@gmail.com> (https://github.com/aggre)"
],
"license": "MIT",
"dependencies": {
"ramda": "^0.30.1",
"type-fest": "^4.26.0"
},
"peerDependencies": {
"lit": "^2.0.0-rc.2 || ^3.0.0",
"rxjs": "^6.6.3 || ^6.6.3 || ^6.6.3 || ^7.0.0"
},
"devDependencies": {
"@esm-bundle/chai": "4.3.4",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-multi-entry": "6.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-typescript": "12.1.1",
"@types/mocha": "10.0.9",
"@types/node": "22.9.0",
"@types/ramda": "0.30.2",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"@web/test-runner": "0.19.0",
"@web/test-runner-puppeteer": "0.17.0",
"browser-env": "3.3.0",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"lit": "3.2.1",
"mocha": "10.8.2",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"rollup": "4.27.2",
"rollup-plugin-dts": "6.1.1",
"rxjs": "7.8.1",
"typescript": "5.5.4",
"typescript-lit-html-plugin": "0.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aggre/ullr.git"
},
"bugs": {
"url": "https://github.com/aggre/ullr/issues"
},
"homepage": "https://github.com/aggre/ullr#readme"
}