-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.51 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.51 KB
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
{
"name": "stackview.ts",
"version": "1.0.1",
"description": "A lightweight TypeScript library for managing DOM history with smooth transitions and view chaining. Pure JavaScript implementation without external dependencies.",
"main": "dist/stackview.js",
"module": "dist/stackview.js",
"types": "dist/stackview.d.ts",
"files": [
"src/",
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"build:examples": "tsc -p examples/tsconfig.json",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit",
"test": "echo \"No tests specified\" && exit 0",
"test:coverage": "echo \"No tests specified\" && exit 0",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"dev": "npm run build:watch",
"example": "npm run build && npm run build:examples && npx http-server . -p 8080 -c-1 -o /examples/"
},
"keywords": [
"stackview",
"typescript",
"navigation",
"dom",
"history",
"transitions",
"view-management",
"web-components",
"custom-elements",
"frontend",
"ui",
"javascript",
"web",
"lifecycle",
"animation",
"lightweight",
"zero-dependencies"
],
"author": {
"name": "Xoboto",
"email": "info@xoboto.com",
"url": "https://github.com/xoboto/stackview.ts"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xoboto/stackview.ts.git"
},
"bugs": {
"url": "https://github.com/xoboto/stackview.ts/issues"
},
"homepage": "https://github.com/xoboto/stackview.ts#readme",
"engines": {
"node": ">=14.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie <= 11"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/explicit-function-return-type": "warn",
"prefer-spread": "off"
}
}
}