This repository has been archived by the owner on Dec 15, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating config and move package to organization
- Loading branch information
1 parent
2b9f896
commit dbb8f55
Showing
16 changed files
with
3,532 additions
and
3,195 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
{ | ||
"presets": [ | ||
"@babel/env", | ||
"@babel/preset-typescript" | ||
], | ||
"presets": ["@babel/env", "@babel/preset-typescript"], | ||
"plugins": ["@babel/plugin-transform-typescript"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
// https://eslint.org/docs/user-guide/configuring | ||
|
||
module.exports = { | ||
root: true, | ||
parser: "@typescript-eslint/parser", | ||
env: { | ||
browser: true, | ||
node: true, | ||
es6: true, | ||
jest: true | ||
} | ||
jest: true, | ||
}, | ||
// https://github.com/standard/standard/blob/master/docs/RULES-en.md | ||
extends: ["standard", "prettier"], | ||
plugins: ["@typescript-eslint"], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
18 | ||
20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{ | ||
"printWidth": 120 | ||
"printWidth": 120, | ||
"semi": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,68 @@ | ||
{ | ||
"name": "stimulus-sortable", | ||
"name": "@stimulus-components/sortable", | ||
"version": "4.1.1", | ||
"engines": { | ||
"node": "*" | ||
}, | ||
"description": "A Stimulus controller to reorder lists with drag-and-drop.", | ||
"keywords": [ | ||
"stimulus", | ||
"stimulusjs", | ||
"stimulus controller", | ||
"sortablejs", | ||
"sortable" | ||
], | ||
"repository": "[email protected]:stimulus-components/stimulus-sortable.git", | ||
"bugs": { | ||
"url": "https://github.com/stimulus-components/stimulus-sortable/issues" | ||
}, | ||
"author": "Guillaume Briday <[email protected]>", | ||
"license": "MIT", | ||
"homepage": "https://github.com/stimulus-components/stimulus-sortable", | ||
"private": false, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"main": "dist/stimulus-sortable.umd.js", | ||
"module": "dist/stimulus-sortable.mjs", | ||
"types": "dist/types/index.d.ts", | ||
"scripts": { | ||
"format": "prettier-standard '**/*.{ts,css,html}' --format", | ||
"lint": "prettier-standard '**/*.{ts,css,html}' --lint", | ||
"lint": "tsc --noEmit && eslint --ext .js,.mjs,.ts . && prettier . --check", | ||
"lintfix": "eslint --ext .js,.mjs,.ts . --fix && prettier . --write", | ||
"types": "tsc --noEmit false --declaration true --emitDeclarationOnly true --outDir dist/types", | ||
"dev": "vite", | ||
"prod": "vite build --mode netlify", | ||
"build": "tsc --noEmit && vite build", | ||
"build": "vite build && yarn types", | ||
"version": "yarn build", | ||
"np": "np --no-2fa --no-tests" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "7.22.5", | ||
"@babel/plugin-syntax-class-properties": "7.12.13", | ||
"@babel/preset-env": "^7.22.5", | ||
"@babel/preset-typescript": "^7.22.5", | ||
"@hotwired/stimulus": "^3.2.1", | ||
"@rails/request.js": "^0.0.8", | ||
"@types/sortablejs": "^1.15.1", | ||
"autoprefixer": "^10.4.14", | ||
"np": "^7.6.2", | ||
"postcss": "^8.4.24", | ||
"prettier-standard": "16.4.1", | ||
"sortablejs": "^1.15.0", | ||
"tailwindcss": "^3.3.2", | ||
"typescript": "^5.1.3", | ||
"vite": "^4.3.9" | ||
"@babel/core": "7.24.3", | ||
"@babel/polyfill": "7.12.1", | ||
"@babel/preset-env": "7.24.3", | ||
"@babel/preset-typescript": "7.24.1", | ||
"@hotwired/stimulus": "^3", | ||
"@rails/request.js": "^0.0.9", | ||
"@types/rails__request.js": "^0.0.0", | ||
"@types/sortablejs": "^1.15.8", | ||
"@typescript-eslint/eslint-plugin": "^7.3.1", | ||
"@typescript-eslint/parser": "^7.3.1", | ||
"autoprefixer": "10.4.19", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-config-standard": "17.1.0", | ||
"eslint-plugin-import": "2.29.1", | ||
"eslint-plugin-n": "16.6.2", | ||
"eslint-plugin-node": "11.1.0", | ||
"eslint-plugin-promise": "6.1.1", | ||
"eslint-plugin-standard": "5.0.0", | ||
"np": "9.2.0", | ||
"postcss": "8.4.38", | ||
"prettier": "3.2.5", | ||
"sortablejs": "^1.15.2", | ||
"tailwindcss": "3.4.1", | ||
"typescript": "^5.4.3", | ||
"vite": "5.2.3" | ||
}, | ||
"peerDependencies": { | ||
"@hotwired/stimulus": "^3.2.1", | ||
"@hotwired/stimulus": "^3.0.0", | ||
"@rails/request.js": "^0.0.8", | ||
"sortablejs": "^1.15.0" | ||
} | ||
|
Oops, something went wrong.